From 6b91ed22e4707f5d1c0848e42840a09a3bbc4a8d Mon Sep 17 00:00:00 2001 From: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> Date: Tue, 17 Dec 2019 22:15:06 +0530 Subject: [PATCH] fix: Remove unwanted print statement --- frappe/desk/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/desk/notifications.py b/frappe/desk/notifications.py index 32d5e281a7..31aae834b5 100644 --- a/frappe/desk/notifications.py +++ b/frappe/desk/notifications.py @@ -206,7 +206,7 @@ def get_notification_config(): else: config[key].update(nc.get(key, {})) return config - print(frappe.cache().hget("notification_config", frappe.session.user)) + return frappe.cache().hget("notification_config", frappe.session.user, _get) def get_filters_for(doctype):