Fix set whitespace

This commit is contained in:
Cody Wyatt Neiman 2022-10-30 16:58:08 -04:00
parent d08c2dcf22
commit f39ce16a97
No known key found for this signature in database
GPG key ID: 94475C8B94E4698D

View file

@ -213,7 +213,7 @@ def s3_download_task(s3_client, bucket, key, eargs, deferred, parent_logcontext)
resp = s3_client.get_object(Bucket=bucket, Key=key) resp = s3_client.get_object(Bucket=bucket, Key=key)
except botocore.exceptions.ClientError as e: except botocore.exceptions.ClientError as e:
if e.response["Error"]["Code"] in ("404","NoSuchKey",): if e.response["Error"]["Code"] in ("404", "NoSuchKey",):
logger.info("Media %s not found in S3", key) logger.info("Media %s not found in S3", key)
reactor.callFromThread(deferred.callback, None) reactor.callFromThread(deferred.callback, None)
return return