Navigation Menu

Skip to content

Commit

Permalink
Added passage in
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilja Orlovs committed Sep 22, 2014
1 parent 2a19e01 commit dda179c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cyclone/web.py
Expand Up @@ -1080,7 +1080,7 @@ def require_setting(self, name, feature="this feature"):

def reverse_url(self, name, *args, **kwargs):
"""Alias for `Application.reverse_url`."""
return self.application.reverse_url(name, *args)
return self.application.reverse_url(name, *args, **kwargs)

def compute_etag(self):
"""Computes the etag header to be used for this request.
Expand Down Expand Up @@ -2155,7 +2155,7 @@ def reverse(self, *args, **kwargs):
if not isinstance(a, (unicode_type, bytes_type)):
a = str(a)
converted_args.append(escape.url_escape(utf8(a)))

rv = rv % tuple(converted_args)

if kwargs:
Expand Down

0 comments on commit dda179c

Please sign in to comment.