fix typo
This commit is contained in:
parent
e10195ae0e
commit
847c91b1b3
2 changed files with 2 additions and 2 deletions
|
|
@ -111,7 +111,7 @@ class AccountsPage(BasePage):
|
||||||
coming = self.find_amount(page, u"Opérations à venir")
|
coming = self.find_amount(page, u"Opérations à venir")
|
||||||
accounting = self.find_amount(page, u"Solde comptable")
|
accounting = self.find_amount(page, u"Solde comptable")
|
||||||
|
|
||||||
if account is not None and accounting + (coming or Decimal('0')) != balance:
|
if accounting is not None and accounting + (coming or Decimal('0')) != balance:
|
||||||
self.logger.warning('%s + %s != %s' % (accounting, coming, balance))
|
self.logger.warning('%s + %s != %s' % (accounting, coming, balance))
|
||||||
|
|
||||||
if accounting is not None:
|
if accounting is not None:
|
||||||
|
|
|
||||||
|
|
@ -111,7 +111,7 @@ class AccountsPage(BasePage):
|
||||||
coming = self.find_amount(page, u"Opérations à venir")
|
coming = self.find_amount(page, u"Opérations à venir")
|
||||||
accounting = self.find_amount(page, u"Solde comptable")
|
accounting = self.find_amount(page, u"Solde comptable")
|
||||||
|
|
||||||
if account is not None and accounting + (coming or Decimal('0')) != balance:
|
if accounting is not None and accounting + (coming or Decimal('0')) != balance:
|
||||||
self.logger.warning('%s + %s != %s' % (accounting, coming, balance))
|
self.logger.warning('%s + %s != %s' % (accounting, coming, balance))
|
||||||
|
|
||||||
if accounting is not None:
|
if accounting is not None:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue