Fix log message to capitalize 'Gitea' in SIGHUP handler

This commit is contained in:
Slipstream 2025-06-07 20:02:54 -06:00
parent 2478fb2f94
commit a02260f265
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -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)