Browse Source

Single quotes for consistency

pull/322/head
Armin Ronacher 14 years ago
parent
commit
7d7d810aea
  1. 2
      flask/app.py

2
flask/app.py

@ -952,7 +952,7 @@ class Flask(_PackageBoundObject):
: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

Loading…
Cancel
Save