From 08f304fae077dffa9297b474efeaa3952af81fe0 Mon Sep 17 00:00:00 2001 From: PengZhang13 Date: Tue, 25 Oct 2016 15:51:05 -0400 Subject: [PATCH] Replace species.generateThermoData with species.getThermoData since we do not have that method any more. --- scripts/exportKineticsLibraryToChemkin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/exportKineticsLibraryToChemkin.py b/scripts/exportKineticsLibraryToChemkin.py index a026848b74..06fcc72ea0 100644 --- a/scripts/exportKineticsLibraryToChemkin.py +++ b/scripts/exportKineticsLibraryToChemkin.py @@ -50,7 +50,7 @@ for spec in speciesDict.values(): index = index + 1 species = Species(molecule = spec.molecule) - species.generateThermoData(database) + species.getThermoData() species.index = index speciesList.append(species)