Skip to content

Commit 3ac257b

Browse files
Bug fixes #8
1 parent 442aeaf commit 3ac257b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/clouds/aws_cloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def upload_directory(self, directory, **options):
3838

3939
files = [f for f in listdir(directory) if isfile(join(directory, f))]
4040
for file in files:
41-
full_path_file = directory + file
41+
full_path_file = join(directory, file)
4242
self.s3.upload_file(full_path_file, bucket_name, file)
4343

4444
def download(self, filename=None, **options):

0 commit comments

Comments
 (0)