From c33b876c664178de92099b6553a6030789bdaaa4 Mon Sep 17 00:00:00 2001 From: Ken Tsang Date: Tue, 18 Apr 2017 10:46:22 +0100 Subject: [PATCH] Remove get all template print --- app/v2/templates/get_templates.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/v2/templates/get_templates.py b/app/v2/templates/get_templates.py index 348ed13cc..a5f4e6f0c 100644 --- a/app/v2/templates/get_templates.py +++ b/app/v2/templates/get_templates.py @@ -14,8 +14,6 @@ def get_templates(): templates = templates_dao.dao_get_all_templates_for_service(api_user.service_id) - print(templates) - return jsonify( templates=[template.serialize() for template in templates] ), 200