-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
dataverse-uploader/dataverse.py
Line 75 in 98d695b
| paths = ['repo'] |
This line actually hard-codes the string "repo", not the command line argument args.repo.
The correct invocation should be:
paths = [args.repo]
if args.dir:
dirs = args.dir.strip().replace(",", " ")
dirs = dirs.split()
paths = [join(args.repo, d) for d in dirs]
Metadata
Metadata
Assignees
Labels
No labels