From 190092adcaee1629dbeb4761d4d32cc0687836d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Wed, 12 Aug 2020 21:47:12 +0800 Subject: [PATCH] Fixed a typo in the txn_sort view in the accounting application. --- accounting/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounting/views.py b/accounting/views.py index 02b1299..6266786 100644 --- a/accounting/views.py +++ b/accounting/views.py @@ -956,7 +956,7 @@ def txn_sort(request, date): HttpResponse: The response. Raises: - Http404: When ther are less than two transactions in this day. + Http404: When there are less than two transactions in this day. """ transactions = Transaction.objects.filter(date=date).order_by("ord") if len(transactions) < 2: