chiark / gitweb /
Fix another UTF-8 filename encoding bug. Add error output to the slice log so we...
[cura.git] / Cura / gui / sliceProgessPanel.py
index 8801d17ddf3cbc00696781671d8e8dc5cd6999fd..5e099b96cac9e68b6daf25b074a922900cd2a292 100644 (file)
@@ -183,6 +183,11 @@ class WorkerThread(threading.Thread):
                                wx.CallAfter(self.notifyWindow.statusText.SetLabel, "Aborted by user.")
                                return
                        line = p.stdout.readline()
+               line = p.stderr.readline()
+               while(len(line) > 0):
+                       line = line.rstrip()
+                       self.progressLog.append(line)
+                       line = p.stderr.readline()
                self.returnCode = p.wait()
                self.fileIdx += 1
                if self.fileIdx == len(self.cmdList):