mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix venv search path on Mac.
This commit is contained in:
parent
f3fae9d238
commit
4380c6714e
@ -65,7 +65,12 @@ Server::Server(quint16 port)
|
|||||||
|
|
||||||
// Append the path, if it's not already there
|
// Append the path, if it's not already there
|
||||||
if (!python_path.contains(pymodules_path))
|
if (!python_path.contains(pymodules_path))
|
||||||
|
{
|
||||||
|
if (!python_path.isEmpty())
|
||||||
|
python_path.append(";");
|
||||||
|
|
||||||
python_path.append(pymodules_path);
|
python_path.append(pymodules_path);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (python_path.length() > 0)
|
if (python_path.length() > 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user