Skip to content

Commit

Permalink
Merge pull request webpy#172 from dimo414/master
Browse files Browse the repository at this point in the history
Fixing regressing introduced by fix for issue 148
  • Loading branch information
anandology committed Aug 6, 2012
2 parents 069827c + 0d6e4a8 commit 35dc18c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/webapi.py
Expand Up @@ -422,7 +422,7 @@ def parse_cookies(http_cookie):
cookie.load(attr_value)
except Cookie.CookieError:
pass
cookies = dict((k, urllib.unquote(v.value)) for k, v in cookie.iteritems())
cookies = dict([(k, urllib.unquote(v.value)) for k, v in cookie.iteritems()])
else:
# HTTP_COOKIE doesn't have quotes, use fast cookie parsing
cookies = {}
Expand Down

0 comments on commit 35dc18c

Please sign in to comment.