You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed ver 0.1.5 from easy_install and there is no way to turn on werkzeug. In one of the last revisions it was disabled by default and there is no option in runserver command to activate it. There is only --werkzeug param which "Tells Django to NOT use the Werkzeug interactive debugger.", but now it make no sense.
So, please change option to --werkzeug to activate werkzeug or make it active by default.
Workaround and possible resolution: in management/commands/runserver.py, line 34, change from:
make_option('--werkzeug', action='store_false', dest='use_werkzeug', default=False,
help='Tells Django to NOT use the Werkzeug interactive debugger.'),
to
make_option('--werkzeug', action='store_true', dest='use_werkzeug', default=False,
help='Tells Django to use the Werkzeug interactive debugger.'),
and now --werkzeug param makes dubugger active.
The text was updated successfully, but these errors were encountered:
It took me few minutes to realize this, --werkzeug option should be to enable it, not disable. Otherwise it should be --nowerkzeug so it consistent with other command options such as --noinput.
Hi
I installed ver 0.1.5 from easy_install and there is no way to turn on werkzeug. In one of the last revisions it was disabled by default and there is no option in runserver command to activate it. There is only --werkzeug param which "Tells Django to NOT use the Werkzeug interactive debugger.", but now it make no sense.
So, please change option to --werkzeug to activate werkzeug or make it active by default.
Workaround and possible resolution: in management/commands/runserver.py, line 34, change from:
make_option('--werkzeug', action='store_false', dest='use_werkzeug', default=False,
help='Tells Django to NOT use the Werkzeug interactive debugger.'),
to
make_option('--werkzeug', action='store_true', dest='use_werkzeug', default=False,
help='Tells Django to use the Werkzeug interactive debugger.'),
and now --werkzeug param makes dubugger active.
The text was updated successfully, but these errors were encountered: