Code

Interactive startup blurb - need to figure how to get the version in there.
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 17 Oct 2001 06:57:29 +0000 (06:57 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 17 Oct 2001 06:57:29 +0000 (06:57 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@308 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup-admin

index 753f0bff7c3df8738e36a6d81b9a7ac84fbcbaab..be494742298c4a50378bce1d28a01e76bf2f87d5 100755 (executable)
@@ -16,7 +16,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: roundup-admin,v 1.31 2001-10-17 06:17:26 richard Exp $
+# $Id: roundup-admin,v 1.32 2001-10-17 06:57:29 richard Exp $
 
 import sys
 if int(sys.version[0]) < 2:
@@ -579,6 +579,8 @@ class AdminTool:
     def interactive(self, ws_re=re.compile(r'\s+')):
         '''Run in an interactive mode
         '''
+        print 'Roundup {version} ready for input.'
+        print 'Type "help" for help.'
         try:
             import readline
         except ImportError:
@@ -629,6 +631,9 @@ if __name__ == '__main__':
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.31  2001/10/17 06:17:26  richard
+# Now with readline support :)
+#
 # Revision 1.30  2001/10/17 06:04:00  richard
 # Beginnings of an interactive mode for roundup-admin
 #