From 42a1db2dd90a90590ba7ccdd6a2d5ef42d605ecc Mon Sep 17 00:00:00 2001 From: Kat King Date: Tue, 11 Apr 2017 09:20:33 -0500 Subject: [PATCH] Use 'Hello world' instead of identity for notify --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index ec52876..af91c6e 100644 --- a/app.py +++ b/app.py @@ -132,7 +132,7 @@ def send_notification(): identity = request.form.get('identity') notification = service.notifications.create( identity=identity, - body='Hello ' + identity + '!' + body='Hello world!' ) return jsonify(message="Notification created!")