remove debug

.. sigh
This commit is contained in:
Mark Liversedge
2017-12-02 20:09:30 +00:00
parent acafb668dc
commit 29558420b6

View File

@@ -55,8 +55,7 @@ PythonEmbed::PythonEmbed(const bool verbose, const bool interactive) : verbose(v
Py_SetProgramName((wchar_t*) name.toStdString().c_str());
// our own module
int rc= PyImport_AppendInittab("goldencheetah", PyInit_goldencheetah);
fprintf(stderr, "Add import module GoldenCheetah rc=%d\n", rc);
PyImport_AppendInittab("goldencheetah", PyInit_goldencheetah);
// need to load the interpreter etc
Py_InitializeEx(0);