Added new argv parse with switches +foo -foo

This commit is contained in:
DiG 2022-01-16 16:49:40 +01:00
parent 5531008ab2
commit 1b4395c3d6
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ with open(".modelignore", "r") as file:
for line in file:
MODEL_IGNORE.append(line.strip())
eprint( len(sys.argv), 'argument(s):', str(sys.argv) )
eprint( len(sys.argv), 'argument(s):', OPTS, PARAMS )
eprint( MODEL_IGNORE )