[13.0]account_ebics 1.3.0 - generic order type

This commit is contained in:
Luc De Meyer
2020-12-05 18:56:12 +01:00
parent 004f1a1eae
commit 18d4984bf5
8 changed files with 376 additions and 156 deletions

View File

@@ -32,10 +32,10 @@ try:
keycode=fintech_register_keycode,
users=fintech_register_users)
except RuntimeError as e:
if e.message == "'register' can be called only once":
if str(e) == "'register' can be called only once":
pass
else:
_logger.error(e.message)
_logger.error(str(e))
fintech.register()
except Exception:
msg = "fintech.register error"