Add Repetier's Format Error to exception whitelist
(cherry picked from commit d037379)
This commit is contained in:
parent
8c1a79558b
commit
0782dda20f
1 changed files with 1 additions and 1 deletions
|
|
@ -1311,7 +1311,7 @@ class MachineCom(object):
|
|||
if self._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