From 96127ea42a03177962ad8b0ae2d53b5bbbcbbd2f Mon Sep 17 00:00:00 2001 From: verbumfeit Date: Tue, 27 Feb 2018 19:02:04 +0100 Subject: [PATCH] Eliminate repetition in Telegram notification --- mylar/PostProcessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/PostProcessor.py b/mylar/PostProcessor.py index 4c1f47bb..9c6e5cec 100755 --- a/mylar/PostProcessor.py +++ b/mylar/PostProcessor.py @@ -2281,7 +2281,7 @@ class PostProcessor(object): if mylar.CONFIG.TELEGRAM_ENABLED: telegram = notifiers.TELEGRAM() - telegram.notify(prline, prline2) + telegram.notify(prline2) if mylar.CONFIG.SLACK_ENABLED: slack = notifiers.SLACK()