From 60ce2c579570813e0a3190a813a005c093716c4e Mon Sep 17 00:00:00 2001 From: Nathan Falvey Date: Fri, 27 Feb 2026 23:26:24 +0000 Subject: [PATCH] Fix GITEA_URL in update_profile.py by removing username from the URL --- update_profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_profile.py b/update_profile.py index ad52b82..23c8c3e 100644 --- a/update_profile.py +++ b/update_profile.py @@ -3,7 +3,7 @@ import requests import traceback # --- Configuration --- -GITEA_URL = "https://gitea.nathan-falvey.synology.me/nathan/" +GITEA_URL = "https://gitea.nathan-falvey.synology.me" USERNAME = "nathan" GITEA_TOKEN = os.getenv("GITEA_TOKEN")