Fixing Windows installation without path initialization file

This commit is contained in:
Matthias Koefferlein 2024-01-30 19:29:11 +01:00
parent 4b7c117cfd
commit 1e51cf6901
1 changed files with 2 additions and 2 deletions

View File

@ -290,9 +290,9 @@ PythonInterpreter::PythonInterpreter (bool embedded)
}
}
}
Py_SetPath (tl::to_wstring (path).c_str ());
Py_SetPath (tl::to_wstring (path).c_str ());
}
} catch (tl::Exception &ex) {
tl::error << tl::to_string (tr ("Evaluation of Python path expression failed")) << ": " << ex.msg ();