Formatting

This commit is contained in:
Jakub Roztocil 2013-03-20 12:07:23 -03:00
parent 30afcea72d
commit bffaee13ff

View File

@ -154,9 +154,9 @@ class Session(BaseConfigDict):
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):