We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 442aeaf commit 3ac257bCopy full SHA for 3ac257b
1 file changed
examples/clouds/aws_cloud.py
@@ -38,7 +38,7 @@ def upload_directory(self, directory, **options):
38
39
files = [f for f in listdir(directory) if isfile(join(directory, f))]
40
for file in files:
41
- full_path_file = directory + file
+ full_path_file = join(directory, file)
42
self.s3.upload_file(full_path_file, bucket_name, file)
43
44
def download(self, filename=None, **options):
0 commit comments