From a02260f265cf5ac092aac5ebc61cebb2d710dac4 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Sat, 7 Jun 2025 20:02:54 -0600 Subject: [PATCH] Fix log message to capitalize 'Gitea' in SIGHUP handler --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index dd38065..031c86d 100644 --- a/main.py +++ b/main.py @@ -838,7 +838,7 @@ def handle_sighup(signum, frame): try: print( - "Received SIGHUP: pulling latest code from gitea (branch master)..." + "Received SIGHUP: pulling latest code from Gitea (branch master)..." ) result = subprocess.run(["git", "pull"], capture_output=True, text=True) print(result.stdout)