mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[IMP] better call string repr
This commit is contained in:
@@ -444,9 +444,9 @@ class AccountBankSatement(Model):
|
|||||||
if res:
|
if res:
|
||||||
compl_lines += 1
|
compl_lines += 1
|
||||||
except ErrorTooManyPartner, exc:
|
except ErrorTooManyPartner, exc:
|
||||||
msg += exc.__repr__() + "\n"
|
msg += repr(exc) + "\n"
|
||||||
except Exception, exc:
|
except Exception, exc:
|
||||||
msg += exc.__repr__() + "\n"
|
msg += repr(exc) + "\n"
|
||||||
# vals = res and res.keys() or False
|
# vals = res and res.keys() or False
|
||||||
if res:
|
if res:
|
||||||
vals = res[line.id]
|
vals = res[line.id]
|
||||||
|
|||||||
Reference in New Issue
Block a user