From 02be00c2f6a5296730e7000c0dcf566450f29be9 Mon Sep 17 00:00:00 2001 From: Amit Davidi Date: Sun, 20 Nov 2016 11:31:06 +0200 Subject: [PATCH] minor change --- example/android/send_notif.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/android/send_notif.py b/example/android/send_notif.py index ff362e6..740a9d1 100644 --- a/example/android/send_notif.py +++ b/example/android/send_notif.py @@ -15,11 +15,11 @@ data = { "title": "Wix Example Project" } } -dataAsJSON = json.dumps(data) +dataJson = json.dumps(data) request = Request( 'https://gcm-http.googleapis.com/gcm/send', - dataAsJSON, + dataJson, { "Authorization" : "key="+API_KEY, "Content-type" : "application/json" -- 2.26.2