Skip to content

Commit 3a6bf7a

Browse files
author
Duc Anh
committed
fix missing comma in argument list
1 parent 810d929 commit 3a6bf7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inbox/util/blockstore.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def _save_to_s3_bucket(data_sha256, bucket_name, data):
5858
# Boto pools connections at the class level
5959
conn = S3Connection(host=config.get('CUSTOM_S3_HOST', None),
6060
port=config.get('CUSTOM_S3_PORT', None),
61-
is_secure=config.get('CUSTOM_S3_SSL', True)
61+
is_secure=config.get('CUSTOM_S3_SSL', True),
6262
aws_access_key_id=config.get('AWS_ACCESS_KEY_ID'),
6363
aws_secret_access_key=config.get('AWS_SECRET_ACCESS_KEY'),
6464
calling_format=OrdinaryCallingFormat())
@@ -124,7 +124,7 @@ def _get_from_s3_bucket(data_sha256, bucket_name):
124124

125125
conn = S3Connection(host=config.get('CUSTOM_S3_HOST', None),
126126
port=config.get('CUSTOM_S3_PORT', None),
127-
is_secure=config.get('CUSTOM_S3_SSL', True)
127+
is_secure=config.get('CUSTOM_S3_SSL', True),
128128
aws_access_key_id=config.get('AWS_ACCESS_KEY_ID'),
129129
aws_secret_access_key=config.get('AWS_SECRET_ACCESS_KEY'),
130130
calling_format=OrdinaryCallingFormat())

0 commit comments

Comments
 (0)