From: nickthetait Date: Tue, 11 Aug 2015 18:12:20 +0000 (-0600) Subject: Printer interruption bug cleanup. Fixes T37 and T178 X-Git-Tag: lulzbot-15.02.1-2.01~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=89346df6f0259b55512b204cd2e20823f7767433;p=cura.git Printer interruption bug cleanup. Fixes T37 and T178 --- diff --git a/Cura/util/machineCom.py b/Cura/util/machineCom.py index 3f98d5dd..e6764400 100644 --- a/Cura/util/machineCom.py +++ b/Cura/util/machineCom.py @@ -497,7 +497,7 @@ class MachineCom(object): # was shut down and turned back on or something else that's weird just happened. # In that case, it can be dangerous to restart the print, so we'd better kill it if newPos == 1 or self._gcodePos > newPos + 100: - self._callback.mcMessage(_("Print canceled due to loss of communication to printer (USB unplugged or power lost)")) + self._callback.mcMessage("Print canceled due to loss of communication to printer (USB unplugged or power lost)") self.cancelPrint() else: self._gcodePos = newPos