From e5e7147a783b218b0fa614faf5aedc3bbe6c0dd7 Mon Sep 17 00:00:00 2001 From: Jack Forgash <58153492+forgxyz@users.noreply.github.com> Date: Thu, 15 May 2025 08:56:40 -0600 Subject: [PATCH] rm evm from var name (#445) --- python/slack_alert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/slack_alert.py b/python/slack_alert.py index 5449abf..4e624f7 100644 --- a/python/slack_alert.py +++ b/python/slack_alert.py @@ -65,10 +65,10 @@ def send_alert(webhook_url): sys.exit(1) if __name__ == '__main__': - webhook_url = os.environ.get("EVM_SLACK_WEBHOOK_URL") + webhook_url = os.environ.get("SLACK_WEBHOOK_URL") if not webhook_url: - print("ERROR: EVM_SLACK_WEBHOOK_URL environment variable is required") + print("ERROR: SLACK_WEBHOOK_URL environment variable is required") sys.exit(1) send_alert(webhook_url) \ No newline at end of file