Banktransfer: Added experimental HBCI support

This commit is contained in:
Raphael Michel
2015-08-20 21:53:10 +02:00
parent e2606cb456
commit b55b02f4b8
7 changed files with 227 additions and 13 deletions

View File

@@ -27,6 +27,10 @@ class BankTransferApp(AppConfig):
import chardet # NOQA
except ImportError:
errs.append(_("Install the python package 'chardet' for better CSV import capabilities."))
try:
import defusedxml # NOQA
except ImportError:
errs.append(_("Please install the python package 'defusedxml' for security reasons."))
return errs