Skip to content

Commit

Permalink
Single quotes for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Sep 10, 2011
1 parent 4e12eb4 commit 7d7d810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask/app.py
Expand Up @@ -952,7 +952,7 @@ def show_post(post_id):
:class:`~werkzeug.routing.Rule` object.
"""
def decorator(f):
endpoint = options.pop("endpoint", None)
endpoint = options.pop('endpoint', None)
self.add_url_rule(rule, endpoint, f, **options)
return f
return decorator
Expand Down

0 comments on commit 7d7d810

Please sign in to comment.