From 4380c6714edfe8e505d7ea2ccec2d563fc331700 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Tue, 7 Jun 2016 12:12:39 +0100 Subject: [PATCH] Fix venv search path on Mac. --- runtime/Server.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runtime/Server.cpp b/runtime/Server.cpp index fd930f6dd..244026885 100644 --- a/runtime/Server.cpp +++ b/runtime/Server.cpp @@ -65,7 +65,12 @@ Server::Server(quint16 port) // Append the path, if it's not already there if (!python_path.contains(pymodules_path)) + { + if (!python_path.isEmpty()) + python_path.append(";"); + python_path.append(pymodules_path); + } #endif if (python_path.length() > 0)