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.
master
Markus Hitter 2012-08-12 18:20:42 +02:00
parent 4d612f2120
commit 47aea82ade
1 changed files with 4 additions and 2 deletions

View File

@ -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."