mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2024-11-21 06:15:56 -07:00
Fix missing comma that prevented --libdata from working
It doesn't seem to be much used, considering it's broken since revision 0af2349e
where the feature was first introduced, and it hasn't been reported.
This commit is contained in:
parent
75b29c92ed
commit
642f8e995d
2 changed files with 2 additions and 2 deletions
2
main.py
2
main.py
|
@ -414,7 +414,7 @@ def main(argv):
|
|||
('optimizer-options=', 'help', 'version', 'output=', 'header',
|
||||
'timestamp', 'python-exceptions', 'prettify', 'bom', 'emap',
|
||||
'preproc=', 'precmd=', 'prearg=', 'prenodef', 'preshow',
|
||||
'avid=', 'avname=', 'assetid=', 'shortname=', 'builtins='
|
||||
'avid=', 'avname=', 'assetid=', 'shortname=', 'builtins=',
|
||||
'libdata=', 'postarg=', 'preproc-show-cmdline'))
|
||||
except getopt.GetoptError as e:
|
||||
Usage(argv[0])
|
||||
|
|
|
@ -1 +1 @@
|
|||
main.py -y -b unit_tests/builtins-coverage-1.txt -L unit_tests/fndata-coverage-3.txt -O -dcr -
|
||||
main.py --python-exceptions --builtins unit_tests/builtins-coverage-1.txt --libdata unit_tests/fndata-coverage-3.txt --optimizer-options -dcr -
|
||||
|
|
Loading…
Reference in a new issue