Skip to content

Commit

Permalink
Fix checkout_account.py (kubernetes-sigs#702)
Browse files Browse the repository at this point in the history
  • Loading branch information
detiber committed May 2, 2019
1 parent 72bebae commit 0c4d475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/checkout_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def post_request(host, input_state = "clean"):
if status != 200:
sys.exit("Got invalid response %d: %s" % (status, reason))

body = json.load(result)
body = json.loads(result)
print 'export BOSKOS_RESOURCE_NAME="%s";' % body['name']
print 'export AWS_ACCESS_KEY_ID="%s";' % body['userdata']['access-key-id']
print 'export AWS_SECRET_ACCESS_KEY="%s";' % body['userdata']['secret-access-key']
Expand Down

0 comments on commit 0c4d475

Please sign in to comment.