Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbrzt committed Mar 20, 2013
1 parent 30afcea commit bffaee1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions httpie/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ def cookies(self, jar):
self['cookies'] = {}
for cookie in jar:
self['cookies'][cookie.name] = dict(
(attname, getattr(cookie, attname))
for attname in stored_attrs
)
(attname, getattr(cookie, attname))
for attname in stored_attrs
)

@property
def auth(self):
Expand Down

0 comments on commit bffaee1

Please sign in to comment.