From 89346df6f0259b55512b204cd2e20823f7767433 Mon Sep 17 00:00:00 2001 From: nickthetait Date: Tue, 11 Aug 2015 12:12:20 -0600 Subject: [PATCH] Printer interruption bug cleanup. Fixes T37 and T178 --- Cura/util/machineCom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2