Wrap long line

This commit is contained in:
Andrew Godwin 2016-02-20 22:59:29 +00:00
parent 64fe0cb77f
commit d180f07b54

View File

@ -10,7 +10,9 @@ def transfer_user(from_session, to_session):
"""
Transfers user from HTTP session to channel session.
"""
if auth.BACKEND_SESSION_KEY in from_session and auth.SESSION_KEY in from_session and auth.HASH_SESSION_KEY in from_session:
if auth.BACKEND_SESSION_KEY in from_session and \
auth.SESSION_KEY in from_session and \
auth.HASH_SESSION_KEY in from_session:
to_session[auth.BACKEND_SESSION_KEY] = from_session[auth.BACKEND_SESSION_KEY]
to_session[auth.SESSION_KEY] = from_session[auth.SESSION_KEY]
to_session[auth.HASH_SESSION_KEY] = from_session[auth.HASH_SESSION_KEY]