Consistent nomenclature

This commit is contained in:
Tom Payne
2012-09-29 14:42:12 +02:00
parent 1a5375fa51
commit c7c93ce099
3 changed files with 6 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ def main(argv):
line = line.strip()
if not line:
continue
m = re.match('@externtype\s*(?P<name>\S+)\Z', line)
m = re.match('@exportType\s*(?P<name>\S+)\Z', line)
if m:
type = Type(m.group('name'))
types.append(type)