From f0dd2fde57dbf8e22617a3457fef130db0ce69cd Mon Sep 17 00:00:00 2001 From: barbequesauce Date: Fri, 12 Apr 2019 12:51:26 -0400 Subject: [PATCH] FIX: Remove NMA (service no longer exists) --- mylar/search.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mylar/search.py b/mylar/search.py index c6402ef8..d3f0a7a0 100755 --- a/mylar/search.py +++ b/mylar/search.py @@ -2729,10 +2729,6 @@ def notify_snatch(sent_to, comicname, comyear, IssueNumber, nzbprov, pack): logger.info(u"Sending Prowl notification") prowl = notifiers.PROWL() prowl.notify(snatched_name, 'Download started using %s' % sent_to) - if mylar.CONFIG.NMA_ENABLED and mylar.CONFIG.NMA_ONSNATCH: - logger.info(u"Sending NMA notification") - nma = notifiers.NMA() - nma.notify(snline=snline, snatched_nzb=snatched_name, sent_to=sent_to, prov=nzbprov) if mylar.CONFIG.PUSHOVER_ENABLED and mylar.CONFIG.PUSHOVER_ONSNATCH: logger.info(u"Sending Pushover notification") pushover = notifiers.PUSHOVER()