We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa1b595 commit 5d4462cCopy full SHA for 5d4462c
s3file/__S3File.py
@@ -21,6 +21,8 @@ def local_xlist(path):
21
22
23
def _split_into_bucket_and_key(path):
24
+ if path[:5] == 's3://':
25
+ path = path[5:]
26
bucket, key = '', ''
27
path_split = path.split('/')
28
bucket = path_split[0]
0 commit comments