Mercurial > p > roundup > code
changeset 261:0ca5381a72b5
made do_get have the args in the correct order
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 01 Oct 2001 06:40:43 +0000 |
| parents | 2099d0d052ed |
| children | ab921dc53ccd |
| files | roundup-admin |
| diffstat | 1 files changed, 7 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup-admin Mon Oct 01 06:30:23 2001 +0000 +++ b/roundup-admin Mon Oct 01 06:40:43 2001 +0000 @@ -16,7 +16,7 @@ # 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: @@ -150,8 +150,8 @@ 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) @@ -428,6 +428,10 @@ # # $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. #
