Skip to content

Commit

Permalink
ENH: fix prompt formatting for access_key
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Nov 12, 2020
1 parent 5caaa91 commit f495f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NDATools/Configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def read_user_credentials(self):
self.password = getpass.getpass('Enter your NIMH Data Archives password:')

if not self.aws_access_key:
self.aws_access_key = getpass.getpass('Enter your aws_access_key. If none, hit "Enter:"')
self.aws_access_key = getpass.getpass('Enter your aws_access_key. If none, hit "Enter":')

if not self.aws_secret_key:
self.aws_secret_key = getpass.getpass('Enter your aws_secret_key. If none, hit "Enter":')

0 comments on commit f495f4e

Please sign in to comment.