Add snatched email indicator prefix

Prefix subject with "Snatched: " to make it more apparent that it is not
the final download email notification.
This commit is contained in:
lepricon49
2015-09-13 10:57:14 -07:00
parent 7f4d10c85d
commit c78e8764a0

View File

@@ -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):