diff options
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/modules.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/scripting/python/modules.c b/source4/scripting/python/modules.c index 18253758b8..960239e863 100644 --- a/source4/scripting/python/modules.c +++ b/source4/scripting/python/modules.c @@ -50,6 +50,10 @@ bool py_update_path(const char *bindir) return false; } + if (!PySys_PathPrepend(py_path, dyn_PYTHONARCHDIR)) { + return false; + } + if (!PySys_PathPrepend(py_path, dyn_PYTHONDIR)) { return false; } |