Skip to content

Commit

Permalink
Fix Reload change in file config when is used base_url /
Browse files Browse the repository at this point in the history
  • Loading branch information
roramirez committed Feb 17, 2016
1 parent 5e3ea04 commit 9666392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def logout():


if APPLICATION_ROOT == '/':
app.run(host=host_bind(), port=port_bind(), extra_files=[cfg_file])
app.run(host=host_bind(), port=port_bind(), use_reloader=True, extra_files=[cfg_file])
else:
application = DispatcherMiddleware(Flask('dummy_app'), {
app.config['APPLICATION_ROOT']: app,
Expand Down

0 comments on commit 9666392

Please sign in to comment.