Merge pull request #1032 from Salandora/fixResend1
Fix Repetier Resend Request v2
This commit is contained in:
commit
9f591cbebe
1 changed files with 1 additions and 1 deletions
|
|
@ -1382,7 +1382,7 @@ class MachineCom(object):
|
|||
if regex_minMaxError.match(line):
|
||||
line = line.rstrip() + self._readline()
|
||||
|
||||
if 'line number' in line.lower() or 'checksum' in line.lower() or 'expected line' in line.lower():
|
||||
if 'line number' in line.lower() or 'checksum' in line.lower() or 'format error' in line.lower() or 'expected line' in line.lower():
|
||||
#Skip the communication errors, as those get corrected.
|
||||
self._lastCommError = line[6:] if line.startswith("Error:") else line[2:]
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in a new issue