Commit 6698247c authored by Jim Fulton's avatar Jim Fulton

Fixed an option definition.

parent db6caa4d
...@@ -66,10 +66,10 @@ def load_config_file(option, opt, config_file, *ignored): ...@@ -66,10 +66,10 @@ def load_config_file(option, opt, config_file, *ignored):
Zope2.configure(config_file) Zope2.configure(config_file)
testrunner.setup.add_option( testrunner.setup.add_option(
'--config-file', action="callback", type="string", '--config-file', action="callback", type="string", dest='config_file',
callback=load_config_file, callback=load_config_file,
help="""\ help="""\
Initialize Zope with the given config file. Initialize Zope with the given configuration file.
""") """)
sys.exit(testrunner.run(defaults)) sys.exit(testrunner.run(defaults))
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