[Zope-Checkins] CVS: ZODB3/zdaemon - zdctl.py:1.26

Guido van Rossum guido@python.org
Thu, 23 Jan 2003 15:34:30 -0500


Update of /cvs-repository/ZODB3/zdaemon
In directory cvs.zope.org:/tmp/cvs-serv10165

Modified Files:
	zdctl.py 
Log Message:
Need to add 'all' to the completion list in complete_show().


=== ZODB3/zdaemon/zdctl.py 1.25 => 1.26 ===
--- ZODB3/zdaemon/zdctl.py:1.25	Thu Jan 23 15:33:37 2003
+++ ZODB3/zdaemon/zdctl.py	Thu Jan 23 15:34:28 2003
@@ -376,7 +376,7 @@
         print "show all -- show all of the above"
 
     def complete_show(self, text, *ignored):
-        options = ["options", "python"]
+        options = ["options", "python", "all"]
         return [x for x in options if x.startswith(text)]
 
     def do_logreopen(self, arg):