Skip to content

Commit

Permalink
Merge pull request #74 from vanderhe/parsingFix
Browse files Browse the repository at this point in the history
Fix collectwavecoeffs config file parsing
  • Loading branch information
bhourahine authored Apr 19, 2024
2 parents d138cf2 + b877218 commit 9b8b085
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sktools/src/sktools/scripts/collectwavecoeffs.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ def setup_parser_main(parser):
'(default: build directory only)')

parser.add_argument(
'-c', '--config-file', action='append', dest='configfiles',
default=['skdef.hsd',],
help='config file(s) to be parsed (default: skdef.hsd)')
'-c', '--config-file', default='skdef.hsd', dest='configfiles',
metavar='CONFIGFILE',
help='config file to be parsed (default: ./skdef.hsd)')

parser.add_argument(
'-b', '--build-dir', default='_build', dest='builddir',
Expand Down

0 comments on commit 9b8b085

Please sign in to comment.