From 6df63270e0e9cebaeeb06f98679b4ff7da3370c4 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 15 Aug 2012 15:18:52 +0000 Subject: [PATCH] Fixed an issue with printing "missing species" errors in ck2cti.py --- interfaces/python/ck2cti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/python/ck2cti.py b/interfaces/python/ck2cti.py index 7192802ba..02dd406ab 100755 --- a/interfaces/python/ck2cti.py +++ b/interfaces/python/ck2cti.py @@ -999,7 +999,7 @@ def readKineticsEntry(entry, speciesDict, energyUnits, moleculeUnits): if species == 'M' or species == 'm': thirdBody = True elif species not in speciesDict: - raise InputParseError('Unexpected species "{0}" in reaction {1}.'.format(reactant, reaction)) + raise InputParseError('Unexpected species "{0}" in reaction {1}.'.format(species, reaction)) else: dest.append((stoichiometry, speciesDict[species]))