Skip to content

Commit

Permalink
Use debug attribute directly.
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyespo committed Dec 2, 2012
1 parent 07ba4a5 commit 2f486d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grip/server.py
Expand Up @@ -38,7 +38,7 @@ def index():
return render_page(read_file(filename), filename, app.config['STYLE_URLS']) return render_page(read_file(filename), filename, app.config['STYLE_URLS'])


# Run local server # Run local server
app.run(app.config['HOST'], app.config['PORT'], debug=app.config['DEBUG'], use_reloader=app.config['DEBUG_GRIP']) app.run(app.config['HOST'], app.config['PORT'], debug=app.debug, use_reloader=app.config['DEBUG_GRIP'])




def _get_styles(source_url, pattern): def _get_styles(source_url, pattern):
Expand Down

0 comments on commit 2f486d0

Please sign in to comment.