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

bugfix #104 : ZeroDivisionError

- test if self.owers is null before returning value
This commit is contained in:
A.Avenel 2013-10-12 17:28:15 +02:00
parent a71d249e6c
commit 6f9fe3c159

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,