Updated pushover notification to match format of Pushbullet.

This commit is contained in:
Joe Blow 2016-07-15 12:06:24 -04:00 committed by evilhero
parent 17d000af0e
commit 034c5fffa3
1 changed files with 3 additions and 1 deletions

View File

@ -1937,7 +1937,9 @@ class PostProcessor(object):
if mylar.PUSHOVER_ENABLED:
pushover = notifiers.PUSHOVER()
pushover.notify(prline, "Download and Post-Processing completed", module=module)
title = prline + " complete!";
message = "Mylar has downloaded and post-processed: " + prline;
pushover.notify(message, title, module=module)
if mylar.BOXCAR_ENABLED:
boxcar = notifiers.BOXCAR()