Mercurial > p > roundup > code
diff roundup-admin @ 298:07a64ec2a79d
Interactive startup blurb - need to figure how to get the version in there.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 17 Oct 2001 06:57:29 +0000 |
| parents | 1bbc16563d89 |
| children | fd9835c1e58d |
line wrap: on
line diff
--- a/roundup-admin Wed Oct 17 06:17:26 2001 +0000 +++ b/roundup-admin Wed Oct 17 06:57:29 2001 +0000 @@ -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 @@ 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 @@ # # $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 #
