Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickthetait <tait@alephobjects.com>2015-08-11 21:12:20 +0300
committernickthetait <tait@alephobjects.com>2015-08-11 21:12:20 +0300
commit89346df6f0259b55512b204cd2e20823f7767433 (patch)
treefd17d5df342109c1fe25e03776ae7a713e7d11a0
parent794cdb1aff10db80d73851c8b4adce86deba5c90 (diff)
Printer interruption bug cleanup. Fixes T37 and T178
-rw-r--r--Cura/util/machineCom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cura/util/machineCom.py b/Cura/util/machineCom.py
index 3f98d5dd61..e6764400b4 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