Wrong change

This commit is contained in:
kapi2289
2018-07-20 11:51:03 +02:00
committed by GitHub
parent ead450aeb8
commit ed7466621f

View File

@@ -153,7 +153,7 @@ def strip_to_json(text):
try: try:
return text[text.index('{'):] return text[text.index('{'):]
except ValueError: except ValueError:
raise FBchatException('No JSON object found: {}, {}'.format(repr(text), text.index('{'))) raise FBchatException('No JSON object found: {!r}'.format(text))
def get_decoded_r(r): def get_decoded_r(r):
return get_decoded(r._content) return get_decoded(r._content)
@@ -220,7 +220,7 @@ def check_request(r, as_json=True):
try: try:
j = json.loads(content) j = json.loads(content)
except ValueError: except ValueError:
raise FBchatFacebookError('Error while parsing JSON: {}'.format(repr(content))) raise FBchatFacebookError('Error while parsing JSON: {!r}'.format(content))
check_json(j) check_json(j)
return j return j
else: else: