From 57d8aa2bfd929b3da7222da8d8ffb9bfdf498686 Mon Sep 17 00:00:00 2001 From: minglis Date: Tue, 1 Mar 2016 14:38:54 +0000 Subject: [PATCH] Removed print statement --- app/dao/notifications_dao.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/dao/notifications_dao.py b/app/dao/notifications_dao.py index 6646a0ce9..cb5be2926 100644 --- a/app/dao/notifications_dao.py +++ b/app/dao/notifications_dao.py @@ -33,7 +33,6 @@ def get_notification(service_id, notification_id): def get_notifications_for_service(service_id, page=1): - print(service_id) query = Notification.query.filter_by(service_id=service_id).order_by(asc(Notification.created_at)).paginate( page=page, per_page=current_app.config['PAGE_SIZE']