Skip to content

Commit 8f028f5

Browse files
Fix upload_dir error
1 parent 5a907d4 commit 8f028f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloudinary_cli/modules/upload_dir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@option("-w", "--concurrent_workers", type=int, default=30, help="Specify number of concurrent network threads.")
2525
def upload_dir(directory, optional_parameter, optional_parameter_parsed, transformation, folder, preset,
2626
concurrent_workers):
27-
items, skipped = [], []
27+
items, skipped = {}, []
2828
dir_to_upload = abspath(path_join(getcwd(), directory))
2929
logger.info("Uploading directory '{}'".format(dir_to_upload))
3030
parent = dirname(dir_to_upload)

0 commit comments

Comments
 (0)