Commit 47aea82a authored by Markus Hitter's avatar Markus Hitter

pronsole.py: repeat manual commands only in non-verbose mode.

In verbose mode (self.p.loud = True), the code actually sending
the G-code line prints this, too, so this was a duplicate.
parent 4d612f21
......@@ -874,14 +874,16 @@ class pronsole(cmd.Cmd):
def default(self,l):
if(l[0] in self.commandprefixes.upper()):
if(self.p and self.p.online):
print "SENDING:"+l
if(not self.p.loud):
print "SENDING:"+l
self.p.send_now(l)
else:
print "Printer is not online."
return
elif(l[0] in self.commandprefixes.lower()):
if(self.p and self.p.online):
print "SENDING:"+l.upper()
if(not self.p.loud):
print "SENDING:"+l.upper()
self.p.send_now(l.upper())
else:
print "Printer is not online."
......
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