1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00

Merge pull request #114 from aavenel/bugfix104

bugfix #104 : ZeroDivisionError
This commit is contained in:
Alexis Metaireau 2013-10-17 04:40:47 -07:00
commit 85a92e0485

View file

@ -218,7 +218,10 @@ class Bill(db.Model):
def pay_each(self):
"""Compute what each person has to pay"""
return round(self.amount / len(self.owers), 2)
if self.owers:
return round(self.amount / len(self.owers), 2)
else:
return 0
def __repr__(self):
return "<Bill of %s from %s for %s>" % (self.amount,