Skip to content
Snippets Groups Projects
Commit bcf36842 authored by Walter Lampl's avatar Walter Lampl
Browse files

PyComponentMgr.cxx: Error msg cosmetics

parent 05fef8be
No related branches found
No related tags found
No related merge requests found
......@@ -151,10 +151,11 @@ PyComponentMgr::initialize()
PyObject *rootFixes = 0;
rootFixes = PyImport_ImportModule(const_cast<char*>(pyRootFixes.c_str()));
if ( !rootFixes || !PyModule_Check( rootFixes ) ) {
PyErr_Print();
PyErr_Clear();
ATH_MSG_WARNING("Could not import [" << pyRootFixes << "] !!"
<< endmsg
<< "Some problem may appear wit some C++->python binded classes (YMMV)");
<< "Some problem may appear with some C++->python binded classes (YMMV)");
}
Py_XDECREF(rootFixes);
return StatusCode::SUCCESS;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment