diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2015-08-25 16:25:46 +0100 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2015-08-25 16:25:46 +0100 |
commit | 57619d6058fc5f70fc5c799d0fc7f362b0a03bcf (patch) | |
tree | 5591f1fe0a2149801f0efb8a261ea96845b89d10 /synapse/api/auth.py | |
parent | Remove completely unused concepts from codebase (diff) | |
download | synapse-57619d6058fc5f70fc5c799d0fc7f362b0a03bcf.tar.xz |
Re-wrap line
Diffstat (limited to 'synapse/api/auth.py')
-rw-r--r-- | synapse/api/auth.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index 1496db7dff..b41e34e658 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -354,9 +354,7 @@ class Auth(object): request.authenticated_entity = user_id - defer.returnValue( - (UserID.from_string(user_id), "") - ) + defer.returnValue((UserID.from_string(user_id), "")) return except KeyError: pass # normal users won't have the user_id query parameter set. |