Skip to content

Added nargs='+' to filenames argument to allow use of wildcards

Martin Schultz requested to merge schultz1/b2share_depositer:master into master

Before, --filenames example*.nc would fail, because the shell expands this to a blank-separated list instead of a comma-seperated list as the depositer wanted to get it. By adding nargs='+' to the parser.add_argument call for filenames, using wildcards works. The old syntax can still be used.

Merge request reports