diff options
author | Gergely Polonkai <gergely.polonkai@ericsson.com> | 2016-02-26 12:05:38 +0100 |
---|---|---|
committer | Gergely Polonkai <gergely.polonkai@ericsson.com> | 2016-02-26 12:05:38 +0100 |
commit | 87acd8fb075114849ca06188ef333119ea73ad12 (patch) | |
tree | 564c053a80e6d2d3a22b78aa33a666ef98daaacb | |
parent | Add error codes for malformed/bad JSON in /login (diff) | |
download | synapse-87acd8fb075114849ca06188ef333119ea73ad12.tar.xz |
Fix to appease the PEP8 dragon
-rw-r--r-- | synapse/rest/client/v1/login.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/login.py b/synapse/rest/client/v1/login.py index a4f89aea7b..f13272da8e 100644 --- a/synapse/rest/client/v1/login.py +++ b/synapse/rest/client/v1/login.py @@ -404,7 +404,9 @@ def _parse_json(request): try: content = json.loads(request.content.read()) if type(content) != dict: - raise SynapseError(400, "Content must be a JSON object.", errcode=Codes.BAD_JSON) + raise SynapseError( + 400, "Content must be a JSON object.", errcode=Codes.BAD_JSON + ) return content except ValueError: raise SynapseError(400, "Content not JSON.", errcode=Codes.NOT_JSON) |