From 61596452611870720d80017b42fbe0d2e6be019b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 25 Sep 2015 17:01:18 -0400 Subject: [PATCH] Remove print statements. --- mayan/apps/documents/statistics.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/mayan/apps/documents/statistics.py b/mayan/apps/documents/statistics.py index faa5563a46..95937b9940 100644 --- a/mayan/apps/documents/statistics.py +++ b/mayan/apps/documents/statistics.py @@ -54,7 +54,6 @@ def total_document_per_month(): for month in range(1, datetime.date.today().month + 1): next_month = month + 1 - print month if next_month == 12: next_month = 1 @@ -80,7 +79,6 @@ def total_document_version_per_month(): for month in range(1, datetime.date.today().month + 1): next_month = month + 1 - print month if next_month == 12: next_month = 1 @@ -106,7 +104,6 @@ def total_document_page_per_month(): for month in range(1, datetime.date.today().month + 1): next_month = month + 1 - print month if next_month == 12: next_month = 1