*** empty log message ***

This commit is contained in:
Dave Goodwin 2004-11-24 03:09:05 +00:00
parent ce0d92c621
commit d6ea317d23

View file

@ -57,7 +57,7 @@ namespace ctml {
if (!f) {
throw CanteraError("checkPython","cannot open "+path+" for writing");
}
f << "from Cantera import ctml_writer\n";
f << "import ctml_writer\n";
f.close();
int ierr = 0;
#ifdef WIN32
@ -185,11 +185,11 @@ namespace ctml {
}
if (ierr != 0) {
string msg = cmd;
bool pyok = checkPython();
if (!pyok)
msg += "\nError in Python installation.";
else
msg += "\nCheck error messages above for syntax errors.";
//bool pyok = checkPython();
//if (!pyok)
// msg += "\nError in Python installation.";
//else
// msg += "\nCheck error messages above for syntax errors.";
throw CanteraError("ct2ctml",
"could not convert input file to CTML\n "
"command line was: " + msg);