From 6877e44293ff0fbf8970f350ce0d8bd83417a639 Mon Sep 17 00:00:00 2001 From: Nathan Falvey Date: Fri, 27 Feb 2026 22:40:32 +0000 Subject: [PATCH] Fix case sensitivity in README file path for consistency --- update_profile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update_profile.py b/update_profile.py index 12832fd..c3f9f8b 100644 --- a/update_profile.py +++ b/update_profile.py @@ -7,10 +7,10 @@ def generate_stats(): return f"āœ… My Gitea instance is alive and well!\nšŸ•’ Last update: {now}." def main(): - readme_path = "README.md" + readme_path = "README.MD" if not os.path.exists(readme_path): - print("README.md not found!") + print(f"{readme_path} not found!") return with open(readme_path, "r", encoding="utf-8") as f: