fix compatibility with python2.6
This commit is contained in:
parent
9810abd278
commit
78a5c3767f
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ class FrenchTransaction(Transaction):
|
|||
elif len(credit) > 0:
|
||||
self.amount = Decimal(credit)
|
||||
else:
|
||||
self.amount = 0.0
|
||||
self.amount = Decimal('0')
|
||||
|
||||
def parse(self, date, raw):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue