Skip to content
Snippets Groups Projects
Commit 4e3c9355 authored by Carsten Kuenne's avatar Carsten Kuenne
Browse files

Merge branch 'carsten.kuenne-master-patch-02074' into 'master'

Update cmd.py

See merge request !10
parents efb47b99 abc2502c
No related branches found
No related tags found
1 merge request!10Update cmd.py
Pipeline #393262 failed
......@@ -40,6 +40,11 @@ def run_s3_functions():
bucketname = args.bucketname
if args.files:
files = args.files
#after s3 server update: s3 server no longer accepts capital letters in bucketname = crash -> force lower case
if bucketname:
buckename = bucketname.lower()
#------------------------------------------------actions--------------------------------------------#
#check if bucket exists
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment