Code

. allow abbreviation of "help" in admin tool too.
authorgrubert <grubert@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 23 Jan 2002 07:27:19 +0000 (07:27 +0000)
committergrubert <grubert@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 23 Jan 2002 07:27:19 +0000 (07:27 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@594 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/admin.py

index a857926f0192406309cc463b2e6e9856004edd52..c6cc5f408b3a5c254b78a1cad31f5f0548ad4e78 100644 (file)
@@ -14,6 +14,7 @@ Feature:
  . you can now use the roundup-admin tool pack the database
  . unit tests for html templating (and re-enabled the listbox field for
    multilinks)
+ . allow abbreviation of "help" in admin tool too.
 
 Fixed:
  . handle attachments with no name (eg tnef)
index 679315c29d9898709024efcad0400a4a14496278..5ce870a01cbefcbb0ce9a38c65fdbe6b6b0cb70c 100644 (file)
@@ -16,7 +16,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: admin.py,v 1.5 2002-01-21 16:33:19 rochecompaan Exp $
+# $Id: admin.py,v 1.6 2002-01-23 07:27:19 grubert Exp $
 
 import sys, os, getpass, getopt, re, UserDict, shlex
 try:
@@ -209,7 +209,11 @@ Command help:
         initopts  -- init command options
         all       -- all available help
         '''
-        topic = args[0]
+        if len(args)>0:
+            topic = args[0]
+        else:
+            topic = 'help'
 
         # try help_ methods
         if self.help.has_key(topic):
@@ -1035,6 +1039,9 @@ if __name__ == '__main__':
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.5  2002/01/21 16:33:19  rochecompaan
+# You can now use the roundup-admin tool to pack the database
+#
 # Revision 1.4  2002/01/14 06:51:09  richard
 #  . #503164 ] create and passwords
 #