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