Skip to content

Commit

Permalink
Fix indentation problems
Browse files Browse the repository at this point in the history
Make the if statement cover everything
  • Loading branch information
jimsch committed Apr 3, 2017
1 parent fdee7af commit 0d7ab7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions check/generate.py
Expand Up @@ -446,10 +446,10 @@ def main():
print("</table>", file=fout)
if (v.dataType == "list" or v.dataType == "orderedList" or v.dataType == "category") and (v.tokenList != None):
print("<br>" + v.dataType + "(", file=fout)
for token in v.tokenList:
print(token.toString(True), file=fout)
print(")", file=fout)
print("</td>", file=fout)
for token in v.tokenList:
print(token.toString(True), file=fout)
print(")", file=fout)
print("</td>", file=fout)
elif options.xml:
print("<section title='" + v.name + "'>", file=fout)
print("<figure>", file=fout)
Expand Down

0 comments on commit 0d7ab7c

Please sign in to comment.