Skip to content

Commit

Permalink
Merge pull request #13 from sdahlbac/fix-docker-hub-login
Browse files Browse the repository at this point in the history
make auth_token settable again
  • Loading branch information
amalfra authored Aug 31, 2019
2 parents a1e76ff + 53814c9 commit e3ea0bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get(self, key):
return None

def set(self, key, value=None):
if key not in VALID_CONFIG_NAMES:
if key not in VALID_CONFIG_NAMES and key not in SECURE_CONFIG_KEYS:
print(key + ' is not a valid config name')
return
self.config_data[key] = value
Expand Down

0 comments on commit e3ea0bd

Please sign in to comment.