Fix missing single-quote

This commit is contained in:
Brandon R. Stoner 2015-08-11 14:55:28 -07:00
parent 69568050bd
commit 285d0e3f91

View file

@ -20,7 +20,7 @@ In the case of the switch being inactive and you are using the decorator, a 404
the user to an absolute URL (relative to domain), or a named URL pattern::
# if redirect_to starts with a /, we assume it's a url path
@switch_is_active('my switch name', redirect_to='/my/url/path)
@switch_is_active('my switch name', redirect_to='/my/url/path')
# alternatively use the url mapper
@switch_is_active('my switch name', redirect_to='access_denied')