Skip to content
This repository was archived by the owner on Dec 27, 2022. It is now read-only.

Commit e29ebbb

Browse files
committed
fix: typo in pbar
1 parent af47e03 commit e29ebbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dmriprep/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def upload(output_dir, bucket, access_key, secret_key, provider='s3', subject=No
9393
def upload_subject(sub, sub_idx):
9494
base_dir = os.path.join(output_dir, sub, 'dmriprep')
9595
for root, dirs, files in os.walk(base_dir):
96-
for f in tqdm(files, desc=f"Uploading {s}", position=sub_idx):
96+
for f in tqdm(files, desc=f"Uploading {sub}", position=sub_idx):
9797
filepath = os.path.join(root, f)
9898
key = root.replace(output_dir, '')
9999
client.upload_file(filepath, bucket, os.path.join(key, f))

0 commit comments

Comments
 (0)