chiark / gitweb /
Fix support for slicing if running from pythonw.exe
[cura.git] / Cura / gui / printWindow.py
index 1bca20ad9148704b2824d7c4f4cba1e1a2f89d14..83642b18dc4a81221ba72bfed01d31f2cb6532bf 100644 (file)
@@ -38,7 +38,7 @@ class printProcessMonitor():
        \r
        def loadFile(self, filename):\r
                if self.handle == None:\r
-                       self.handle = subprocess.Popen([sys.executable, sys.argv[0], '-r', filename], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\r
+                       self.handle = subprocess.Popen([sys.executable, sys.argv[0], '-r', filename], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)\r
                        self.thread = threading.Thread(target=self.Monitor)\r
                        self.thread.start()\r
                else:\r