Version 6.0.4
Bugs Fixed
The Django
runmodwsgimanagement command was broken and would fail immediately withAttributeError: module 'mod_wsgi.express' has no attribute 'options'. The command referenced themod_wsgi.express.optionsandmod_wsgi.express.serversubmodules without importing them. As Django builds the argument parser on every invocation, this affected all uses of the command and not justrunmodwsgi --help.The Django
runmodwsgimanagement command failed withValueError: unsupported format characterwhen displaying help. The optparse option help text is now escaped and translated correctly when it is converted to the argparse form Django requires, so literal%characters such as the%{GLOBAL}token and the%defaulttoken are handled properly.The Django
runmodwsgimanagement command raisedNameError: name 'value' is not definedwhen validating percentage style options such as--initial-workers. The value is now parsed and range checked correctly.