[ck2cti] Fix bug when validating converted mechanisms if the output file name is not specified to ck2cti

This commit is contained in:
Bryan W. Weber 2014-07-16 16:15:14 +00:00
parent 947a262d90
commit 61f10970d2

View file

@ -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')