Remove print statements.

This commit is contained in:
Roberto Rosario
2015-09-25 17:01:18 -04:00
parent 500f870c78
commit 6159645261

View File

@@ -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