Commit 38e2b930 authored by Chris McDonough's avatar Chris McDonough

Dont error out when we do -h.

parent e3470632
...@@ -5,7 +5,7 @@ def run(): ...@@ -5,7 +5,7 @@ def run():
from Zope.Startup import handlers, options, start_zope from Zope.Startup import handlers, options, start_zope
opts = options.ZopeOptions() opts = options.ZopeOptions()
opts.realize() opts.realize(doc="Sorry, no option docs yet.")
handlers.handleConfig(opts.configroot, opts.confighandlers) handlers.handleConfig(opts.configroot, opts.confighandlers)
App.config.setConfiguration(opts.configroot) App.config.setConfiguration(opts.configroot)
start_zope(opts.configroot) start_zope(opts.configroot)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment