[Zope-Checkins] CVS: ZODB3/zdaemon - zdoptions.py:1.4

Jeremy Hylton jeremy@zope.com
Fri, 17 Jan 2003 12:08:58 -0500


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

Modified Files:
	zdoptions.py 
Log Message:
help() needs a dummy argument to play right with the framework


=== ZODB3/zdaemon/zdoptions.py 1.3 => 1.4 ===
--- ZODB3/zdaemon/zdoptions.py:1.3	Thu Jan 16 23:14:56 2003
+++ ZODB3/zdaemon/zdoptions.py	Fri Jan 17 12:08:55 2003
@@ -26,7 +26,7 @@
         self.add(None, None, "h", "help", self.help)
         self.add("configfile", None, "C:", "configure=")
 
-    def help(self):
+    def help(self, dummy):
         """Print a long help message (self.doc) to stdout and exit(0).
 
         Occurrences of "%s" in self.doc are replaced by self.progname.