From 7f6d282cda8484b5dc675e2a429082bd749016fc Mon Sep 17 00:00:00 2001 From: "Conor.McManus" Date: Mon, 15 Apr 2019 15:24:05 +0200 Subject: [PATCH] Remove unneeded print --- atmos.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/atmos.py b/atmos.py index a886806..47a90e1 100755 --- a/atmos.py +++ b/atmos.py @@ -42,8 +42,7 @@ def generate_creds(): contents = contents + "[{workspace}]\n".format(workspace=workspace) contents = contents + "access_key_id=" + os.environ.get(workspace.upper() + '_ACCESS_KEY_ID') + "\n" contents = contents + "secret_access_key=" + os.environ.get(workspace.upper() + '_SECRET_ACCESS_KEY') + "\n" - print(contents) - with open(os.path.expanduser('~/.aws/credentials'), 'w+') as f: + with open(os.path.expanduser('~/.aws/credentials.atmos'), 'w+') as f: f.write(contents) def get_valid_envs():