From 6a9eb5ed0e0796c3087bf9f57c75022fe54e48d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Mon, 20 Jul 2020 20:20:05 +0800 Subject: [PATCH] Removed the unused logging from the accounting_amount template filter in the accounting application. --- accounting/templatetags/accounting.py | 1 - 1 file changed, 1 deletion(-) diff --git a/accounting/templatetags/accounting.py b/accounting/templatetags/accounting.py index 99db968..2eaa574 100644 --- a/accounting/templatetags/accounting.py +++ b/accounting/templatetags/accounting.py @@ -31,7 +31,6 @@ def accounting_amount(value): return "" if value == 0: return "-" - print(value) s = str(abs(value)) while True: m = re.match("^([1-9][0-9]*)([0-9]{3})", s)