From 0d7c82b12267ed3a9ece1ca72a71cea077e9cc0f Mon Sep 17 00:00:00 2001 From: "A.Avenel" Date: Sun, 7 Apr 2013 22:14:32 +0200 Subject: More code cleanup for "settle bills" --- budget/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'budget/web.py') diff --git a/budget/web.py b/budget/web.py index f975587..3125f9b 100644 --- a/budget/web.py +++ b/budget/web.py @@ -386,7 +386,7 @@ def change_lang(lang): @main.route("//settle_bills") def settle_bill(): """Compute the sum each one have to pay to each other and display it""" - bills = g.project.settle_bills() + bills = g.project.get_transactions_to_settle_bill() return render_template("settle_bills.html", bills=bills) -- cgit v1.1