From 957b5b3929ad56a67bc2742852a3514cef34eafc Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 27 Sep 2012 18:13:57 +0000 Subject: [PATCH] [cantera]: fixing a bug in file name variable. --- 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 0c02887f8..c14c72973 100644 --- a/src/base/ct2ctml.cpp +++ b/src/base/ct2ctml.cpp @@ -143,7 +143,7 @@ void ck2cti(const std::string& in_file, const std::string& thermo_file, * Section to bomb out if python is not * present in the computation environment. */ - string ppath = file; + string ppath = in_file; throw CanteraError("ct2ctml", "python ck to cti conversion requested for file, " + ppath + ", but not available in this computational environment");