diff --git a/auth_generate_password/__openerp__.py b/auth_generate_password/__openerp__.py
index 137d13f36..0d750097c 100644
--- a/auth_generate_password/__openerp__.py
+++ b/auth_generate_password/__openerp__.py
@@ -59,7 +59,7 @@ Copyright, Author and Licence :
'email_template',
],
'data': [
- 'data/ir_config_parameter.yml',
+ 'data/ir_config_parameter.xml',
'data/email_template.xml',
'view/view.xml',
],
diff --git a/auth_generate_password/data/ir_config_parameter.xml b/auth_generate_password/data/ir_config_parameter.xml
new file mode 100644
index 000000000..257a0482e
--- /dev/null
+++ b/auth_generate_password/data/ir_config_parameter.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ auth_generate_password.password_size
+ 12
+
+
+
+ auth_generate_password.password_chars
+ string.ascii_letters + string.digits
+
+
+
diff --git a/auth_generate_password/data/ir_config_parameter.yml b/auth_generate_password/data/ir_config_parameter.yml
deleted file mode 100644
index fe580cf78..000000000
--- a/auth_generate_password/data/ir_config_parameter.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-# Authentification - Generate Password module for Odoo
-# Copyright (C) 2014 GRAP (http://www.grap.coop)
-# @author Sylvain LE GAL (https://twitter.com/legalsylvain)
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as
-# published by the Free Software Foundation, either version 3 of the
-# License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see .
-#
-##############################################################################
-
-- !record {model: ir.config_parameter, id: password_size}:
- key: auth_generate_password.password_size
- value: 12
-
-- !record {model: ir.config_parameter, id: password_chars}:
- key: auth_generate_password.password_chars
- value: string.ascii_letters + string.digits
diff --git a/auth_generate_password/view/view.xml b/auth_generate_password/view/view.xml
index e1dfe3b24..bce005c42 100644
--- a/auth_generate_password/view/view.xml
+++ b/auth_generate_password/view/view.xml
@@ -42,7 +42,5 @@
-
-