[Zope-Checkins] CVS: Zope/bin - runzope.py:1.1.2.2

Fred L. Drake, Jr. fred@zope.com
Mon, 24 Feb 2003 16:56:30 -0500


Update of /cvs-repository/Zope/bin
In directory cvs.zope.org:/tmp/cvs-serv10433/bin

Modified Files:
      Tag: new-install-branch
	runzope.py 
Log Message:
Change how things get passed around.  Avoids some special cases.

=== Zope/bin/runzope.py 1.1.2.1 => 1.1.2.2 ===
--- Zope/bin/runzope.py:1.1.2.1	Fri Feb 14 01:03:50 2003
+++ Zope/bin/runzope.py	Mon Feb 24 16:56:29 2003
@@ -22,8 +22,7 @@
 def main():
     opts = options.ZopeOptions()
     opts.realize()
-    handlers.handleConfig(opts.configroot,
-                          opts.confighandlers, [])
+    handlers.handleConfig(opts.configroot, opts.confighandlers)
     App.config.setConfiguration(opts.configroot)
     start_zope(opts.configroot)