summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9460799)
raw | patch | inline | side by side (parent: 9460799)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 9 Nov 2001 01:25:40 +0000 (01:25 +0000) | ||
committer | richard <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 | patch | blob | history |
diff --git a/roundup-admin b/roundup-admin
index 778ce18b6f7712c5edd90858e6bf69e805ae3b28..ef2ea2adaf46e8a54d4946e39f64ca947b9056ce 100755 (executable)
--- a/roundup-admin
+++ b/roundup-admin
# 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:
# 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):
#
# $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]