Skip to content

Commit

Permalink
Merge pull request #486 from dandi/rm-current-col
Browse files Browse the repository at this point in the history
Remove "current" column from upload progress display
  • Loading branch information
yarikoptic authored Mar 23, 2021
2 parents 4c3eb5b + 34fe1db commit 42e80b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dandi/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ def process_path(path, relpath):
validating = False
for r in client.iter_upload(ds_identifier, "draft", metadata, str(path)):
if r["status"] == "uploading":
uploaded_paths[str(path)]["size"] = r["current"]
uploaded_paths[str(path)]["size"] = r.pop("current")
yield r
elif r["status"] == "post-validating":
# Only yield the first "post-validating" status
Expand Down

0 comments on commit 42e80b3

Please sign in to comment.