diff --git a/account_statement_import_ofx/__manifest__.py b/account_statement_import_ofx/__manifest__.py
index 5d34944f..77b622e8 100644
--- a/account_statement_import_ofx/__manifest__.py
+++ b/account_statement_import_ofx/__manifest__.py
@@ -1,7 +1,7 @@
{
"name": "Import OFX Bank Statement",
"category": "Banking addons",
- "version": "14.0.1.0.0",
+ "version": "16.0.1.0.0",
"license": "AGPL-3",
"author": "Odoo SA,"
"Akretion,"
@@ -10,8 +10,10 @@
"Nicolas JEUDY,"
"Le Filament,"
"Odoo Community Association (OCA)",
+ "maintainers": ["alexis-via"],
+ "development_status": "Mature",
"website": "https://github.com/OCA/bank-statement-import",
- "depends": ["account_statement_import"],
+ "depends": ["account_statement_import_file"],
"data": ["views/account_statement_import.xml"],
"external_dependencies": {"python": ["ofxparse"]},
"installable": True,
diff --git a/account_statement_import_ofx/views/account_statement_import.xml b/account_statement_import_ofx/views/account_statement_import.xml
index e47d2cc9..6d8b68da 100644
--- a/account_statement_import_ofx/views/account_statement_import.xml
+++ b/account_statement_import_ofx/views/account_statement_import.xml
@@ -4,7 +4,7 @@
account.statement.import
diff --git a/account_statement_import_ofx/wizard/account_statement_import.py b/account_statement_import_ofx/wizard/account_statement_import.py
index 5275c098..d88c9085 100644
--- a/account_statement_import_ofx/wizard/account_statement_import.py
+++ b/account_statement_import_ofx/wizard/account_statement_import.py
@@ -84,5 +84,5 @@ class AccountStatementImport(models.TransientModel):
"The file might not be valid.\n\n %s"
)
% str(e)
- )
+ ) from e
return result