From c8eb31ce821e880778bc434f6c2331476097d8e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 25 Jul 2020 14:26:35 +0800 Subject: [PATCH] Removed unused debug logging in the views of the accounting application. --- accounting/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/accounting/views.py b/accounting/views.py index 91fd9db..0e61ac4 100644 --- a/accounting/views.py +++ b/accounting/views.py @@ -855,7 +855,6 @@ def transaction_show(request, type, transaction): Returns: HttpResponse: The response. """ - print(dir(request)) return render(request, F"accounting/transactions/{type}/show.html", { "transaction_type": type, "item": transaction,