0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-03 01:48:23 +02:00

Use get to avoid KeyErrors

This commit is contained in:
David Baker 2016-07-22 17:18:50 +01:00
parent dad2da7e54
commit 7ed58bb347

View file

@ -286,7 +286,7 @@ class AuthHandler(BaseHandler):
logger.info(
"%s reCAPTCHA from hostname %s",
"Successful" if resp_body['success'] else "Failed",
resp_body['hostname']
resp_body.get('hostname')
)
if resp_body['success']:
defer.returnValue(True)