Deletion of decode_line() as it is not required anymore in python 3
authorfunilrys <redacted>
Fri, 10 Aug 2018 13:56:15 +0000 (15:56 +0200)
committerSteven Black <redacted>
Thu, 6 Sep 2018 03:53:57 +0000 (23:53 -0400)
Also:
  * Deletion of any PY3 references

updateReadme.py

index d6f4622c8520d7c009c4c731a9ab9e18a38bb973..6491282bef3890a6cd53d6503fcc667e44f7aafe 100644 (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()
git clone https://git.99rst.org/PROJECT