Commit 69793bd2 authored by Guillaume Seguin's avatar Guillaume Seguin

Merge branch 'experimental' of github.com:kliment/Printrun into experimental

parents 81bc0de4 98bdb2b1
...@@ -841,6 +841,14 @@ class pronsole(cmd.Cmd): ...@@ -841,6 +841,14 @@ class pronsole(cmd.Cmd):
else: else:
self.log(_("Printer is not online.")) self.log(_("Printer is not online."))
return return
elif(l[0] == "@"):
if(self.p and self.p.online):
if(not self.p.loud):
self.log("SENDING:"+l[1:])
self.p.send_now(l[1:])
else:
self.log("printer is not online.")
return
else: else:
cmd.Cmd.default(self, l) cmd.Cmd.default(self, l)
......
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