diff --git a/check/generate.py b/check/generate.py index c25731f..3fddf63 100644 --- a/check/generate.py +++ b/check/generate.py @@ -446,10 +446,10 @@ def main(): print("", file=fout) if (v.dataType == "list" or v.dataType == "orderedList" or v.dataType == "category") and (v.tokenList != None): print("
" + v.dataType + "(", file=fout) - for token in v.tokenList: - print(token.toString(True), file=fout) - print(")", file=fout) - print("", file=fout) + for token in v.tokenList: + print(token.toString(True), file=fout) + print(")", file=fout) + print("", file=fout) elif options.xml: print("
", file=fout) print("
", file=fout)