From 21260c4ee20633a0eedd2e5500707a54e0a01df4 Mon Sep 17 00:00:00 2001 From: evilhero Date: Fri, 8 Aug 2014 02:52:38 -0400 Subject: [PATCH] FIX: Fixed Boxcar2 notification error --- mylar/notifiers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/notifiers.py b/mylar/notifiers.py index 6de6a75a..4d0e0d96 100644 --- a/mylar/notifiers.py +++ b/mylar/notifiers.py @@ -225,7 +225,7 @@ class BOXCAR: data = urllib.urlencode({ 'user_credentials': mylar.BOXCAR_TOKEN, 'notification[title]': title.encode('utf-8').strip(), - 'notification[long_message]': message.encode('utf-8'), + 'notification[long_message]': msg.encode('utf-8'), 'notification[sound]': "done" })