From df8a0375aa5f329326439b797b2232aa27d1f88d Mon Sep 17 00:00:00 2001 From: Damien Crier Date: Wed, 30 Jan 2019 11:32:34 +0100 Subject: [PATCH] fix linting issue on the module --- users_ldap_populate/README.rst | 13 +++++++++++++ users_ldap_populate/__openerp__.py | 14 -------------- .../tests/test_users_ldap_populate.py | 4 ++-- 3 files changed, 15 insertions(+), 16 deletions(-) create mode 100644 users_ldap_populate/README.rst diff --git a/users_ldap_populate/README.rst b/users_ldap_populate/README.rst new file mode 100644 index 000000000..885360a0a --- /dev/null +++ b/users_ldap_populate/README.rst @@ -0,0 +1,13 @@ +This module allows to prepopulate the user database with all entries in the +LDAP database. + +In order to schedule the population of the user database on a regular basis, +create a new scheduled action with the following properties: + +- Object: res.company.ldap +- Function: action_populate +- Arguments: [res.company.ldap.id] + +Substitute res.company.ldap.id with the actual id of the res.company.ldap +object you want to query. + diff --git a/users_ldap_populate/__openerp__.py b/users_ldap_populate/__openerp__.py index f6732e33f..e86089fb2 100644 --- a/users_ldap_populate/__openerp__.py +++ b/users_ldap_populate/__openerp__.py @@ -24,20 +24,6 @@ "author": "Therp BV,Odoo Community Association (OCA)", "license": "AGPL-3", "category": 'Tools', - "description": """ -This module allows to prepopulate the user database with all entries in the -LDAP database. - -In order to schedule the population of the user database on a regular basis, -create a new scheduled action with the following properties: - -- Object: res.company.ldap -- Function: action_populate -- Arguments: [res.company.ldap.id] - -Substitute res.company.ldap.id with the actual id of the res.company.ldap -object you want to query. -""", "depends": [ 'auth_ldap', ], diff --git a/users_ldap_populate/tests/test_users_ldap_populate.py b/users_ldap_populate/tests/test_users_ldap_populate.py index 55d5a8441..06bb4849e 100644 --- a/users_ldap_populate/tests/test_users_ldap_populate.py +++ b/users_ldap_populate/tests/test_users_ldap_populate.py @@ -5,7 +5,7 @@ from openerp.tests.common import TransactionCase from contextlib import contextmanager -class patch_ldap_connection(object): +class PatchLdapConnection(object): def __init__(self, results): self.results = results @@ -30,7 +30,7 @@ def patch_ldap(self, results): original_initialize = ldap.initialize def initialize(uri): - return patch_ldap_connection(results) + return PatchLdapConnection(results) ldap.initialize = initialize yield ldap.initialize = original_initialize