Fix parsing of Unknown commands

This commit is contained in:
Paulo Henrique Silva 2014-10-26 21:39:51 -02:00 committed by Hamilton Kibbe
parent b5f8451c8f
commit 76abd9e3f8

View file

@ -308,6 +308,10 @@ class GerberParser(object):
if line.find('*') > 0:
yield UnknownStmt(line)
did_something = True
line = ""
continue
oldline = line
def evaluate(self, stmt):