Skip to content

Commit d2bf439

Browse files
author
Roche Compaan
committed
Missing "self" in props_from_args
1 parent 75f7856 commit d2bf439

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

roundup/admin.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: admin.py,v 1.2 2002-01-07 10:41:44 richard Exp $
19+
# $Id: admin.py,v 1.3 2002-01-08 05:26:32 rochecompaan Exp $
2020

2121
import sys, os, getpass, getopt, re, UserDict, shlex
2222
try:
@@ -71,7 +71,7 @@ def get_class(self, classname):
7171
except KeyError:
7272
raise UsageError, _('no such class "%(classname)s"')%locals()
7373

74-
def props_from_args(args, klass=None):
74+
def props_from_args(self, args, klass=None):
7575
props = {}
7676
for arg in args:
7777
if arg.find('=') == -1:
@@ -995,6 +995,9 @@ def main(self):
995995

996996
#
997997
# $Log: not supported by cvs2svn $
998+
# Revision 1.2 2002/01/07 10:41:44 richard
999+
# #500140 ] AdminTool.get_class() returns nothing
1000+
#
9981001
# Revision 1.1 2002/01/05 02:11:22 richard
9991002
# I18N'ed roundup admin - and split the code off into a module so it can be used
10001003
# elsewhere.

0 commit comments

Comments
 (0)