summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f72ddc9)
raw | patch | inline | side by side (parent: f72ddc9)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 1 Oct 2001 06:40:43 +0000 (06:40 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 1 Oct 2001 06:40:43 +0000 (06:40 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@269 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup-admin | patch | blob | history |
diff --git a/roundup-admin b/roundup-admin
index f69009fdd854925cf8c3ce84a840d2720cdcfd61..a29c0558262d5239a492d1e6bc9ede09a59be4a2 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.18 2001-09-18 22:58:37 richard Exp $
+# $Id: roundup-admin,v 1.19 2001-10-01 06:40:43 richard Exp $
import sys
if int(sys.version[0]) < 2:
Retrieves the property value of the nodes specified by the designators.
'''
- designators = string.split(args[0], ',')
- propname = args[1]
+ propname = args[0]
+ designators = string.split(args[1], ',')
# TODO: handle the -c option
for designator in designators:
classname, nodeid = roundupdb.splitDesignator(designator)
#
# $Log: not supported by cvs2svn $
+# Revision 1.18 2001/09/18 22:58:37 richard
+#
+# Added some more help to roundu-admin
+#
# Revision 1.17 2001/08/28 05:58:33 anthonybaxter
# added missing 'import' statements.
#