Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions printrun/pronsole.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,11 @@ def emptyline(self):
def default(self, l):
if l[0].upper() in self.commandprefixes.upper():
if self.p and self.p.online:
if l[0] != l[0].upper():
l = l.upper()
if not self.p.loud:
self.log("SENDING:" + l.upper())
self.p.send_now(l.upper())
self.log("SENDING:" + l)
self.p.send_now(l)
else:
self.logError(_("Printer is not online."))
return
Expand Down