summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 87153e2)
raw | patch | inline | side by side (parent: 87153e2)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 17 Oct 2001 06:17:26 +0000 (06:17 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 17 Oct 2001 06:17:26 +0000 (06:17 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@307 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup-admin | patch | blob | history |
diff --git a/roundup-admin b/roundup-admin
index befa0a28af5792b87863aaeb565a2c1d9a583e64..753f0bff7c3df8738e36a6d81b9a7ac84fbcbaab 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.30 2001-10-17 06:04:00 richard Exp $
+# $Id: roundup-admin,v 1.31 2001-10-17 06:17:26 richard Exp $
import sys
if int(sys.version[0]) < 2:
def interactive(self, ws_re=re.compile(r'\s+')):
'''Run in an interactive mode
'''
+ try:
+ import readline
+ except ImportError:
+ print "Note: command history and editing not available"
+
while 1:
try:
command = raw_input('roundup> ')
#
# $Log: not supported by cvs2svn $
+# Revision 1.30 2001/10/17 06:04:00 richard
+# Beginnings of an interactive mode for roundup-admin
+#
# Revision 1.29 2001/10/16 03:48:01 richard
# admin tool now complains if a "find" is attempted with a non-link property.
#