Fixed exception triggered on analysis abort

This commit is contained in:
Gina Häußge 2013-02-01 11:01:20 +01:00
parent 49cd1ffbd6
commit 8d90ad26ba

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: