From: Steven Abadie Date: Tue, 18 Nov 2014 03:52:01 +0000 (-0700) Subject: Possible fix for one of the lines being dumped into .xsession-errors. X-Git-Tag: 14.09-1.18~50 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d517a8e17d89266335d95b8d7559a0e5ddbcd2a8;p=cura.git Possible fix for one of the lines being dumped into .xsession-errors. This needs further testing. --- diff --git a/Cura/serialCommunication.py b/Cura/serialCommunication.py index e94574d1..c1ec18dc 100644 --- a/Cura/serialCommunication.py +++ b/Cura/serialCommunication.py @@ -46,8 +46,8 @@ class serialComm(object): def mcProgress(self, lineNr): sys.stdout.write('progress:%d\n' % (lineNr)) - def mcZChange(self, newZ): - sys.stdout.write('changeZ:%d\n' % (newZ)) + #def mcZChange(self, newZ): + # sys.stdout.write('changeZ:%d\n' % (newZ)) def monitorStdin(self): while not self._comm.isClosed():