From 6eb36447ed8ee1f166bdeccc4135bbd8ce042089 Mon Sep 17 00:00:00 2001 From: wmayer Date: Thu, 28 Dec 2017 19:04:48 +0100 Subject: [PATCH] fix regression of pr1181 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6fd1b12045..a7041f3ec9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -947,8 +947,8 @@ endif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/Ext/PySide) file(WRITE ${CMAKE_BINARY_DIR}/Ext/PySide/__init__.py "# PySide wrapper\n" - "from PySide2 import __version__" - "from PySide2 import __version_info__") + "from PySide2 import __version__\n" + "from PySide2 import __version_info__\n") file(WRITE ${CMAKE_BINARY_DIR}/Ext/PySide/QtCore.py "from PySide2.QtCore import *\n\n" "#QCoreApplication.CodecForTr=0\n" "#QCoreApplication.UnicodeUTF8=1\n")