Skip to content

Commit

Permalink
Space
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Aug 29, 2015
1 parent 7fa8d94 commit 13ca302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def _update_cookies(self, cookies):
for name, value in cookies:
if isinstance(value, http.cookies.Morsel):
# use dict method because SimpleCookie class modifies value
# before Python3.4
# before Python 3.4
dict.__setitem__(self.cookies, name, value)
else:
self.cookies[name] = value
Expand Down

0 comments on commit 13ca302

Please sign in to comment.