Skip to content

Commit 65b127f

Browse files
committed
Corrected a few more parameter issues for cli
1 parent 9883739 commit 65b127f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hed/cli/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,8 +405,8 @@ def extract_sidecar_cmd(
405405
if verbose:
406406
args.append("-v")
407407
if exclude_dirs:
408-
for d in exclude_dirs:
409-
args.extend(["-x", d])
408+
args.append("-x")
409+
args.extend(exclude_dirs)
410410

411411
extract_main(args)
412412

0 commit comments

Comments
 (0)