- gravos post processor: fix comments that got broke in a previous commit

pull/25/head
Jeff Doyle (nfz) 2016-01-31 18:40:48 -04:00
rodzic 0a794097a1
commit fd33a06d6a
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -6,7 +6,8 @@ class Creator(iso.Creator):
iso.Creator.__init__(self)
def SPACE_STR(self): return ' '
def PROGRAM(self): return( '')
def COMMENT(self, comment): return( (';%s' % comment ) )
def PROGRAM(self): return(None)
def program_begin(self, id, comment):
self.write( (';' + comment + '\n') )