From 636d98366d410de823feae40d1ecbc97599a112f Mon Sep 17 00:00:00 2001 From: Slipstream Date: Sat, 7 Jun 2025 20:36:29 -0600 Subject: [PATCH] Update SIGHUP handler log message to specify 'Gitea instance' --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 031c86d..0c3b42a 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 instance (branch master)..." ) result = subprocess.run(["git", "pull"], capture_output=True, text=True) print(result.stdout)