This commit is contained in:
parent
1bc8e2feb1
commit
e452922f41
1 changed files with 7 additions and 7 deletions
|
@ -39,21 +39,21 @@ with open("wiki/Modlist.md", "w") as f:
|
||||||
f.write("<th>Count</th>")
|
f.write("<th>Count</th>")
|
||||||
f.write("</tr>\r\n")
|
f.write("</tr>\r\n")
|
||||||
|
|
||||||
f.write("\r\n<tr>")
|
f.write("<tr>")
|
||||||
|
f.write("<td>Shared</td>")
|
||||||
|
f.write("<td>" + str(count["both"]) + "</td>")
|
||||||
|
f.write("</tr>\r\n")
|
||||||
|
|
||||||
|
f.write("<tr>")
|
||||||
f.write("<td>Client</td>")
|
f.write("<td>Client</td>")
|
||||||
f.write("<td>" + str(count["client"]) + "</td>")
|
f.write("<td>" + str(count["client"]) + "</td>")
|
||||||
f.write("</tr>\r\n")
|
f.write("</tr>\r\n")
|
||||||
|
|
||||||
f.write("\r\n<tr>")
|
f.write("<tr>")
|
||||||
f.write("<td>Server</td>")
|
f.write("<td>Server</td>")
|
||||||
f.write("<td>" + str(count["server"]) + "</td>")
|
f.write("<td>" + str(count["server"]) + "</td>")
|
||||||
f.write("</tr>\r\n")
|
f.write("</tr>\r\n")
|
||||||
|
|
||||||
f.write("\r\n<tr>")
|
|
||||||
f.write("<td>Shared</td>")
|
|
||||||
f.write("<td>" + str(count["both"]) + "</td>")
|
|
||||||
f.write("</tr>\r\n")
|
|
||||||
|
|
||||||
f.write("\r\n</table>\r\n")
|
f.write("\r\n</table>\r\n")
|
||||||
|
|
||||||
f.write("## Individual Mods\r\n")
|
f.write("## Individual Mods\r\n")
|
||||||
|
|
Loading…
Reference in a new issue