This commit is contained in:
Trilarion
2017-12-12 14:53:53 +01:00
parent 23589defc8
commit 8e0802215e
3 changed files with 3 additions and 2 deletions

View File

@ -112,7 +112,7 @@ def update_readme():
# assemble output
update = ['- **[{}](games/{}/_toc.md)** ({})\n'.format(*entry) for entry in info]
update = "{} entries".format(sum(n)) + "".join(update)
update = "{} entries\n".format(sum(n)) + "".join(update)
# insert new text in the middle
text = start + "[comment]: # (start of autogenerated content, do not edit)\n" + update + "\n[comment]: # (end of autogenerated content)" + end