aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormontellese <montellese@xbmc.org>2013-09-09 13:49:54 +0200
committermontellese <montellese@xbmc.org>2013-09-09 13:49:54 +0200
commitd9a897d8eaaafec73d592eeeb6edf2bdeebb87fb (patch)
tree843ddcc87ef86d31ea9e62d453180cf6064834c4
parent4e32a8446e13ecf13731eecbf45fb461147903e1 (diff)
CPythonInvoker: fix log message format (thanks vdrfan)
-rw-r--r--xbmc/interfaces/python/PythonInvoker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/interfaces/python/PythonInvoker.cpp b/xbmc/interfaces/python/PythonInvoker.cpp
index a77ba2e7cd..5f83f23847 100644
--- a/xbmc/interfaces/python/PythonInvoker.cpp
+++ b/xbmc/interfaces/python/PythonInvoker.cpp
@@ -575,7 +575,7 @@ void CPythonInvoker::initializeModules(const std::map<std::string, PythonModuleI
for (std::map<std::string, PythonModuleInitialization>::const_iterator module = modules.begin(); module != modules.end(); ++module)
{
if (!initializeModule(module->second))
- CLog::Log(LOGWARNING, "CPythonInvoker(%s, %i): unable to initialize python module \"%s\"", module->first.c_str(), GetId(), m_source);
+ CLog::Log(LOGWARNING, "CPythonInvoker(%d, %s): unable to initialize python module \"%s\"", GetId(), m_source, module->first.c_str());
}
}