Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion S3/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ def __init__(self, configfile = None, access_key=None, secret_key=None, access_t
self.aws_credential_file()

# override these if passed on the command-line
if access_key and secret_key:
# Allow blank secret_key
if access_key and secret_key is not None:
self.access_key = access_key
self.secret_key = secret_key
if access_token:
Expand Down
Loading