Skip to content

Commit

Permalink
Fix a bug naming variable/argument credentials_file (missing _file).
Browse files Browse the repository at this point in the history
  • Loading branch information
VJalili committed Aug 2, 2018
1 parent 72cd57d commit ce5b058
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/cloud/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __main__():
required=True)

args = parser.parse_args(sys.argv[1:])
download(args.provider, args.credentials, args.bucket, args.object_label, args.filename, args.overwrite_existing)
download(args.provider, args.credentials_file, args.bucket, args.object_label, args.filename, args.overwrite_existing)

if __name__ == "__main__":
sys.exit(__main__())
2 changes: 1 addition & 1 deletion tools/cloud/download.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<command interpreter="python">
download.py
--provider=$provider
--credentials=$credentials
--credentials_file=$credentials_file
--bucket=$bucket
--object_label=$object_label
--filename=$filename
Expand Down

0 comments on commit ce5b058

Please sign in to comment.