diff options
Diffstat (limited to 'budget/web.py')
| -rw-r--r-- | budget/web.py | 2 |
1 files changed, 1 insertions, 1 deletions
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("/<project_id>/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) |
