summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f108147)
raw | patch | inline | side by side (parent: f108147)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 9 Oct 2001 23:36:25 +0000 (23:36 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 9 Oct 2001 23:36:25 +0000 (23:36 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@282 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup-admin | patch | blob | history |
diff --git a/roundup-admin b/roundup-admin
index 85eee36243e2607bbeb6bd644c025b5d231506b0..4267f433df594320e926a15eb10337b53f12c2fa 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.22 2001-10-09 07:25:59 richard Exp $
+# $Id: roundup-admin,v 1.23 2001-10-09 23:36:25 richard Exp $
import sys
if int(sys.version[0]) < 2:
instance = roundup.instance.open(instance_home)
db = instance.open('admin')
+ if len(args) < 2:
+ print function.__doc__
+ return 1
+
# do the command
try:
return function(db, args[1:])
#
# $Log: not supported by cvs2svn $
+# Revision 1.22 2001/10/09 07:25:59 richard
+# Added the Password property type. See "pydoc roundup.password" for
+# implementation details. Have updated some of the documentation too.
+#
# Revision 1.21 2001/10/05 02:23:24 richard
# . roundup-admin create now prompts for property info if none is supplied
# on the command-line.