git_webhook.py: rewrite comment to reflect the reality

This commit is contained in:
veclav talica 2024-09-03 13:27:46 +03:00
parent 13d46ad901
commit 2ea2ce8e54

View File

@ -34,7 +34,7 @@ class HttpHandler(BaseHTTPRequestHandler):
self.send_response(400) self.send_response(400)
return return
# Don't make em wait. # todo: This way of doing it blocks both parties. Not ideal.
self.send_response(200) self.send_response(200)
subprocess.run(["git", "pull"]) subprocess.run(["git", "pull"])