Deletion of decode_line() as it is not required anymore in python 3

Also:
  * Deletion of any PY3 references
This commit is contained in:
funilrys 2018-08-10 15:56:15 +02:00 committed by Steven Black
parent 58db5143ed
commit 62ccd5b084
No known key found for this signature in database
GPG Key ID: 8B814B914974E6AF

View File

@ -7,6 +7,7 @@
import json
import os
import sys
import time
from string import Template
@ -74,15 +75,17 @@ def main():
with open(os.path.join(data[key]["location"],
README_FILENAME), "wt") as out:
for line in open(README_TEMPLATE):
line = line.replace('@GEN_DATE@', time.strftime("%B %d %Y", time.gmtime()))
line = line.replace('@EXTENSIONS@', extensions_str)
line = line.replace('@EXTENSIONS_HEADER@', extensions_header)
line = line.replace('@NUM_ENTRIES@', "{:,}".format(data[key]["entries"]))
line = line.replace('@SUBFOLDER@', os.path.join(data[key]["location"], ''))
line = line.replace('@GEN_DATE@', time.strftime("%B %d %Y",
time.gmtime()))
line = line.replace('@EXTENSIONS@',extensions_str)
line = line.replace('@EXTENSIONS_HEADER@', extensions_header))
line = line.replace('@NUM_ENTRIES@',
"{:,}".format(data[key]["entries"]))
line = line.replace('@SUBFOLDER@', os.path.join(
data[key]["location"], ''))
line = line.replace('@TOCROWS@', toc_rows)
line = line.replace('@SOURCEROWS@', source_rows)
out.write(line)
if __name__ == "__main__":
main()