[ck2cti] Fix bug when validating converted mechanisms if the output file name is not specified to ck2cti
This commit is contained in:
parent
947a262d90
commit
61f10970d2
1 changed files with 1 additions and 1 deletions
|
|
@ -1891,7 +1891,7 @@ def main(argv):
|
|||
if not outName.endswith('.cti'):
|
||||
outName += '.cti'
|
||||
else:
|
||||
outName = None
|
||||
outName = os.path.splitext(inputFile)[0] + '.cti'
|
||||
|
||||
permissive = '--permissive' in options
|
||||
thermoFile = options.get('--thermo')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue