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