Fixed exception triggered on analysis abort

master
Gina Häußge 2013-02-01 11:01:20 +01:00
parent 49cd1ffbd6
commit 8d90ad26ba
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class gcode(object):
currentLayer.append(currentPath)
for line in gcodeFile:
if self._abort:
raise StopIteration
raise AnalysisAborted()
if type(line) is tuple:
line = line[0]
if self.progressCallback != None: