From 9febf36a842d6ef4d775a9b02547e3f5a540de74 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 20 Nov 2020 16:28:57 +1300 Subject: [PATCH] Meta tweaks Signed-off-by: Richie Bendall --- CONTRIBUTING.md => contributing.md | 0 LICENSE => license | 0 README.md => readme.md | 0 update_list.py | 4 ++-- 4 files changed, 2 insertions(+), 2 deletions(-) rename CONTRIBUTING.md => contributing.md (100%) rename LICENSE => license (100%) rename README.md => readme.md (100%) diff --git a/CONTRIBUTING.md b/contributing.md similarity index 100% rename from CONTRIBUTING.md rename to contributing.md diff --git a/LICENSE b/license similarity index 100% rename from LICENSE rename to license diff --git a/README.md b/readme.md similarity index 100% rename from README.md rename to readme.md diff --git a/update_list.py b/update_list.py index 996e87c5..5fae6b50 100755 --- a/update_list.py +++ b/update_list.py @@ -28,7 +28,7 @@ result = f""" {languagesText}""" -readmeContents = open('README.md', 'r', encoding="utf-8").read() +readmeContents = open('readme.md', 'r', encoding="utf-8").read() -open('README.md', 'w', encoding="utf-8").write(regexReplace( +open('readme.md', 'w', encoding="utf-8").write(regexReplace( readmeContents, r"(.|\n)*", result))