[Zope-Checkins] SVN: Zope/trunk/test.py Fixed an option definition.
Jim Fulton
jim at zope.com
Tue Oct 25 15:23:08 EDT 2005
Log message for revision 39619:
Fixed an option definition.
Changed:
U Zope/trunk/test.py
-=-
Modified: Zope/trunk/test.py
===================================================================
--- Zope/trunk/test.py 2005-10-25 19:20:23 UTC (rev 39618)
+++ Zope/trunk/test.py 2005-10-25 19:23:07 UTC (rev 39619)
@@ -66,10 +66,10 @@
Zope2.configure(config_file)
testrunner.setup.add_option(
- '--config-file', action="callback", type="string",
+ '--config-file', action="callback", type="string", dest='config_file',
callback=load_config_file,
help="""\
-Initialize Zope with the given config file.
+Initialize Zope with the given configuration file.
""")
sys.exit(testrunner.run(defaults))
More information about the Zope-Checkins
mailing list