From 2be24e96bf665463161f7d6bd98bc2196dd08695 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Mon, 27 Jul 2015 17:39:53 +0200 Subject: [PATCH] Minor fix --- taiga/stats/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/taiga/stats/api.py b/taiga/stats/api.py index 43c96d5c..bb2948e4 100644 --- a/taiga/stats/api.py +++ b/taiga/stats/api.py @@ -28,7 +28,6 @@ class SystemStatsViewSet(viewsets.ViewSet): permission_classes = (permissions.SystemStatsPermission,) def list(self, request, **kwargs): - import ipdb; ipdb.set_trace() stats = OrderedDict() stats["users"] = services.get_users_stats() stats["projects"] = services.get_projects_stats()