Fix parsing of Unknown commands

This commit is contained in:
Paulo Henrique Silva 2014-10-26 21:39:51 -02:00
parent d5c8d896d8
commit 777ffd385b

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):