Code

Should parse with python 1.5.2 now.
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 9 Nov 2001 01:25:40 +0000 (01:25 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 9 Nov 2001 01:25:40 +0000 (01:25 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@387 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup-admin

index 778ce18b6f7712c5edd90858e6bf69e805ae3b28..ef2ea2adaf46e8a54d4946e39f64ca947b9056ce 100755 (executable)
@@ -16,7 +16,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: roundup-admin,v 1.40 2001-11-08 04:42:00 richard Exp $
+# $Id: roundup-admin,v 1.41 2001-11-09 01:25:40 richard Exp $
 
 import sys
 if int(sys.version[0]) < 2:
@@ -318,9 +318,9 @@ Command help:
 
         # now do the find
         if self.comma_sep:
-            print ','.join(cl.find(**{propname: value}))
+            print ','.join(apply(cl.find, (), {propname: value}))
         else:
-            print cl.find(**{propname: value})
+            print apply(cl.find, (), {propname: value})
         return 0
 
     def do_specification(self, args):
@@ -725,6 +725,10 @@ if __name__ == '__main__':
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.40  2001/11/08 04:42:00  richard
+# Expanded the already-abbreviated "initialise" and "specification" commands,
+# and added a comment to the command help about the abbreviation.
+#
 # Revision 1.39  2001/11/08 04:29:59  richard
 # roundup-admin now accepts abbreviated commands (eg. l = li = lis = list)
 # [thanks Engelbert Gruber for the inspiration]