diff options
author | mzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2010-01-19 14:26:33 +0000 |
---|---|---|
committer | mzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2010-01-19 14:26:33 +0000 |
commit | 8b4d88284a82ba14c90577aa4fc968513fa558d0 (patch) | |
tree | 4b34390a10f83d3543cc3d3658ccc333be0d4eda /plugin_python.c | |
parent | 2e2e535b2c13d1fb5cf959039c81a948686a46bc (diff) | |
download | lcd4linux-8b4d88284a82ba14c90577aa4fc968513fa558d0.tar.gz |
plugin_python.c: print tracebacks also for Python scripts that do not "compile"
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1086 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin_python.c')
-rw-r--r-- | plugin_python.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin_python.c b/plugin_python.c index e3005e2..fcd3419 100644 --- a/plugin_python.c +++ b/plugin_python.c @@ -105,6 +105,8 @@ static void pyt_exec_str(RESULT * result, const char *module, const char *functi Py_DECREF(pModule); } else { error("Failed to load python module \"%s\"", module); + /* print traceback on stderr */ + PyErr_PrintEx(0); } SetResult(&result, R_STRING, ""); return; |