From 688c8103001559f59bc42b236a6376423eeae029 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Tue, 28 Mar 2017 08:41:38 -0400 Subject: [PATCH] Add header that seems to be needed with Python 3. --- runtime/Server.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/runtime/Server.cpp b/runtime/Server.cpp index ef90b7ab1..82ab2cb23 100644 --- a/runtime/Server.cpp +++ b/runtime/Server.cpp @@ -22,6 +22,10 @@ // App headers #include "Server.h" +#ifndef PYTHON2 +#include +#endif + static void add_to_path(QString &python_path, QString path, bool prepend=false) { if (!python_path.contains(path))