diff options
| author | A.Avenel <avenel.alexandre@gmail.com> | 2013-04-07 22:14:32 +0200 |
|---|---|---|
| committer | A.Avenel <avenel.alexandre@gmail.com> | 2013-04-07 22:14:32 +0200 |
| commit | 0d7c82b12267ed3a9ece1ca72a71cea077e9cc0f (patch) | |
| tree | 664900152d10dc061e4ed723c9fc9d7781741111 /budget/web.py | |
| parent | 1fa0cff180d668a8d93d24413fe7832cdbd3e826 (diff) | |
| download | ihatemoney-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.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) |
