Merge pull request #146 from ZeusWPI/fix-hooks-for-real-now

Fix hooks for real now
This commit is contained in:
redfast00 2019-09-16 23:36:41 +02:00 committed by GitHub
commit dddf13454a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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