Don't error for 3xx responses

pull/2147/head
David Baker 2017-04-21 11:51:17 +01:00
parent 2e165295b7
commit a1595cec78
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ class SimpleHttpClient(object):
body = yield preserve_context_over_fn(readBody, response)
if response.code / 100 != 2:
if response.code / 100 >= 4:
raise CodeMessageException(response.code, body)
defer.returnValue(json.loads(body))