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]
dataverse-uploader/dataverse.py
Line 75 in 98d695b
This line actually hard-codes the string "repo", not the command line argument
args.repo.The correct invocation should be: