From 034c5fffa32122890f6a29352262a3a01e10704a Mon Sep 17 00:00:00 2001 From: Joe Blow Date: Fri, 15 Jul 2016 12:06:24 -0400 Subject: [PATCH] Updated pushover notification to match format of Pushbullet. --- mylar/PostProcessor.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mylar/PostProcessor.py b/mylar/PostProcessor.py index 7cc56ee7..0964fe74 100755 --- a/mylar/PostProcessor.py +++ b/mylar/PostProcessor.py @@ -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()