From e2dc261b22f7d1e5d8e60fe683b2fcce5bfbc6bd Mon Sep 17 00:00:00 2001 From: flo269 Date: Tue, 18 Jul 2017 11:58:04 +0200 Subject: [PATCH] Update __init__.py --- modules/notification/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/notification/__init__.py b/modules/notification/__init__.py index 2f440cb..0e9ed72 100644 --- a/modules/notification/__init__.py +++ b/modules/notification/__init__.py @@ -44,7 +44,7 @@ def init(cbpi): :return: None """ if cbpi.get_config_parameter("donation_notification", "YES") == "YES": - msg = {"id": len(cbpi.cache["messages"]), "type": "info", "headline": "Support CraftBeerPi with your donation", "message": "You will find the PayPay Donation button in the system menu" , "read": False} + msg = {"id": len(cbpi.cache["messages"]), "type": "info", "headline": "Support CraftBeerPi with your donation", "message": "You will find the PayPal Donation button in the system menu." , "read": False} cbpi.cache["messages"].append(msg) NotificationView.register(cbpi.app, route_base='/api/notification')