From e8294949daf6a6714ebaf479e0fb713587d59020 Mon Sep 17 00:00:00 2001 From: redfast00 Date: Mon, 16 Sep 2019 23:14:52 +0200 Subject: [PATCH] Fix hooks for real now --- app/notification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/notification.py b/app/notification.py index db13610..13b62d1 100644 --- a/app/notification.py +++ b/app/notification.py @@ -37,7 +37,7 @@ class WebhookSenderThread(Thread): def slack_webhook(self) -> None: if self.url: - requests.post(url, json={"text": self.message}) + requests.post(self.url, json={"text": self.message}) else: print(self.message)