summaryrefslogtreecommitdiff
path: root/src/caja-python.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/caja-python.c')
-rw-r--r--src/caja-python.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/caja-python.c b/src/caja-python.c
index 237e216..e9940ab 100644
--- a/src/caja-python.c
+++ b/src/caja-python.c
@@ -174,8 +174,8 @@ caja_python_init_python (void)
if (Py_IsInitialized())
return TRUE;
- debug("g_module_open " PY_LIB_LOC "/libpython" PYTHON_VERSION "." G_MODULE_SUFFIX ".1.0");
- libpython = g_module_open(PY_LIB_LOC "/libpython" PYTHON_VERSION "." G_MODULE_SUFFIX ".1.0", 0);
+ debug("g_module_open " PY_LIB_LOC "/libpython" PYTHON_VERSION PYTHON_ABIFLAGS "." G_MODULE_SUFFIX ".1.0");
+ libpython = g_module_open(PY_LIB_LOC "/libpython" PYTHON_VERSION PYTHON_ABIFLAGS "." G_MODULE_SUFFIX ".1.0", 0);
if (!libpython)
g_warning("g_module_open libpython failed: %s", g_module_error());