From 3fe969e53698b4e86da6379169a44c2c493abbed Mon Sep 17 00:00:00 2001 From: Guillaume Seguin Date: Sat, 18 May 2013 23:29:37 +0200 Subject: [PATCH] Cosmetic change to a translated string This change is free as I already changed this string before pushing :) --- pronterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pronterface.py b/pronterface.py index ebb49a9..b6b63ac 100755 --- a/pronterface.py +++ b/pronterface.py @@ -1317,7 +1317,7 @@ class PronterWindow(MainWindow, pronsole.pronsole): print _("the print goes from %f mm to %f mm in X\nand is %f mm wide\n") % (gcode.xmin, gcode.xmax, gcode.width) print _("the print goes from %f mm to %f mm in Y\nand is %f mm wide\n") % (gcode.ymin, gcode.ymax, gcode.depth) print _("the print goes from %f mm to %f mm in Z\nand is %f mm high\n") % (gcode.zmin, gcode.zmax, gcode.height) - print _("Estimated duration: "), gcode.estimate_duration() + print _("Estimated duration: %s") % gcode.estimate_duration() self.gviz.clear() self.gwindow.p.clear() self.gviz.addfile(gcode)