diff options
Diffstat (limited to 'libs/plugin_python/src/runner/pythonrunner.cpp')
| -rw-r--r-- | libs/plugin_python/src/runner/pythonrunner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/plugin_python/src/runner/pythonrunner.cpp b/libs/plugin_python/src/runner/pythonrunner.cpp index c630530..d74db4c 100644 --- a/libs/plugin_python/src/runner/pythonrunner.cpp +++ b/libs/plugin_python/src/runner/pythonrunner.cpp @@ -300,8 +300,8 @@ namespace mo2::python { #ifdef _WIN32 py::module_::import("os").attr("add_dll_directory")(absolute(dllPath)); #else - // On Linux, there is no add_dll_directory equivalent; prepend the folder to - // sys.path so Python extension modules can be found. + // On Linux, prepend the folder to sys.path so Python extension modules + // can be found. ensureFolderInPath(QString::fromStdString(absolute(dllPath).string())); #endif } |
