From 957ddc97ae416b663eac6b975be8b28cac3ba961 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Fri, 2 Aug 2013 23:17:40 +0000 Subject: [PATCH] Fix calls to ck2cti that pass through the C++ interface --- src/base/ct2ctml.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/ct2ctml.cpp b/src/base/ct2ctml.cpp index 73b1c32ac..5f73ccaf4 100644 --- a/src/base/ct2ctml.cpp +++ b/src/base/ct2ctml.cpp @@ -154,7 +154,7 @@ void ck2cti(const std::string& in_file, const std::string& thermo_file, pyin << " import sys\n"; pyin << " sys.stderr = sys.stdout\n"; pyin << " import ck2cti\n"; - pyin << " ck2cti.convertMech(r'" << in_file << "',"; + pyin << " ck2cti.Parser().convertMech(r'" << in_file << "',"; if (thermo_file != "" && thermo_file != "-") { pyin << " thermoFile=r'" << thermo_file << "',"; }