summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4109ebd)
raw | patch | inline | side by side (parent: 4109ebd)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 27 Feb 2002 03:28:21 +0000 (03:28 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 27 Feb 2002 03:28:21 +0000 (03:28 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@661 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/admin.py | patch | blob | history |
diff --git a/roundup/admin.py b/roundup/admin.py
index c2c8840e4cde7b1b39c00cccbd7cb5b38ee5bf58..ef7f9217585797379646436c14bdb92d52096994 100644 (file)
--- a/roundup/admin.py
+++ b/roundup/admin.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: admin.py,v 1.7 2002-02-20 05:04:32 richard Exp $
+# $Id: admin.py,v 1.8 2002-02-27 03:28:21 richard Exp $
import sys, os, getpass, getopt, re, UserDict, shlex
try:
except KeyError:
raise UsageError, _('no such class "%(classname)s"')%locals()
- def props_from_args(self, args, klass=None):
+ def props_from_args(self, args):
props = {}
for arg in args:
if arg.find('=') == -1:
# handle command-line args
self.instance_home = os.environ.get('ROUNDUP_INSTANCE', '')
+ # TODO: reinstate the user/password stuff (-u arg too)
name = password = ''
if os.environ.has_key('ROUNDUP_LOGIN'):
l = os.environ['ROUNDUP_LOGIN'].split(':')
#
# $Log: not supported by cvs2svn $
+# Revision 1.7 2002/02/20 05:04:32 richard
+# Wasn't handling the cvs parser feeding properly.
+#
# Revision 1.6 2002/01/23 07:27:19 grubert
# . allow abbreviation of "help" in admin tool too.
#