From c78e8764a0799ba974daa94247c97ace40c4f0bd Mon Sep 17 00:00:00 2001 From: lepricon49 Date: Sun, 13 Sep 2015 10:57:14 -0700 Subject: [PATCH] Add snatched email indicator prefix Prefix subject with "Snatched: " to make it more apparent that it is not the final download email notification. --- headphones/searcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/searcher.py b/headphones/searcher.py index 6f9ea87a..530cc339 100644 --- a/headphones/searcher.py +++ b/headphones/searcher.py @@ -951,7 +951,7 @@ def send_to_downloader(data, bestqual, album): logger.info(u"Sending Email notification") email = notifiers.Email() message = 'Snatched from ' + provider + '. ' + name - email.notify(title, message) + email.notify("Snatched: " + title, message) def verifyresult(title, artistterm, term, lossless):