From 454a5969c2162ffd82ae079ab0f4ef9cb35fe798 Mon Sep 17 00:00:00 2001 From: Simon Edwards Date: Tue, 28 Feb 2017 10:25:44 +0100 Subject: [PATCH] Removed debug. CURA-3418 Cura build on Win 64 fails due to $PYTHONPATH --- cura_app.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cura_app.py b/cura_app.py index 2fc8752cee..989c45b37a 100755 --- a/cura_app.py +++ b/cura_app.py @@ -60,10 +60,6 @@ if Platform.isWindows() and hasattr(sys, "frozen"): sys.stdout = open(os.path.join(dirpath, "stdout.log"), "w") sys.stderr = open(os.path.join(dirpath, "stderr.log"), "w") -if Platform.isWindows(): - print("sys.path: " + repr(sys.path)) - print("has sys.frozen: " + str(hasattr(sys, "frozen"))) - # Force an instance of CuraContainerRegistry to be created and reused later. cura.Settings.CuraContainerRegistry.CuraContainerRegistry.getInstance()