aboutsummaryrefslogtreecommitdiff
path: root/budget/web.py
diff options
context:
space:
mode:
authorA.Avenel <avenel.alexandre@gmail.com>2013-04-07 22:14:32 +0200
committerA.Avenel <avenel.alexandre@gmail.com>2013-04-07 22:14:32 +0200
commit0d7c82b12267ed3a9ece1ca72a71cea077e9cc0f (patch)
tree664900152d10dc061e4ed723c9fc9d7781741111 /budget/web.py
parent1fa0cff180d668a8d93d24413fe7832cdbd3e826 (diff)
downloadihatemoney-mirror-0d7c82b12267ed3a9ece1ca72a71cea077e9cc0f.zip
ihatemoney-mirror-0d7c82b12267ed3a9ece1ca72a71cea077e9cc0f.tar.gz
ihatemoney-mirror-0d7c82b12267ed3a9ece1ca72a71cea077e9cc0f.tar.bz2
More code cleanup for "settle bills"
Diffstat (limited to 'budget/web.py')
-rw-r--r--budget/web.py2
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)