Commit fb7b2740 authored by Guillaume Seguin's avatar Guillaume Seguin

Minor string change

parent d815ff64
...@@ -1616,7 +1616,7 @@ class pronsole(cmd.Cmd): ...@@ -1616,7 +1616,7 @@ class pronsole(cmd.Cmd):
preface = _("Print progress: ") preface = _("Print progress: ")
progress = 100 * float(self.p.queueindex) / len(self.p.mainqueue) progress = 100 * float(self.p.queueindex) / len(self.p.mainqueue)
elif self.sdprinting: elif self.sdprinting:
preface = _("Print progress: ") preface = _("SD print progress: ")
progress = self.percentdone progress = self.percentdone
prev_msg = preface + "%.1f%%" % progress prev_msg = preface + "%.1f%%" % progress
if self.silent is False: if self.silent is False:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment