Commit b513383d authored by kliment's avatar kliment

Accept alternative resend format

parent 124aef58
...@@ -100,8 +100,8 @@ class printcore(): ...@@ -100,8 +100,8 @@ class printcore():
self.errorcb(line) self.errorcb(line)
#callback for errors #callback for errors
pass pass
if "Resend" in line or "rs" in line: if "resend" in line.lower() or "rs" in line:
toresend=int(line.replace("N:"," ").replace("N"," ").split()[-1]) toresend=int(line.replace("N:"," ").replace("N"," ").replace(":"," ").split()[-1])
self.resendfrom=toresend self.resendfrom=toresend
self.clear=True self.clear=True
self.clear=True self.clear=True
......
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