[FIX] pylint
parent
25ee0ff38a
commit
01da73caaa
|
@ -18,5 +18,4 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
import test_serialized
|
from . import test_serialized
|
||||||
from test_serialized import TestBaseFieldSerialized
|
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
import model
|
from . import model
|
||||||
|
|
||||||
from openerp.tools.misc import upload_data_thread
|
from openerp.tools.misc import upload_data_thread
|
||||||
upload_data_thread.run = lambda x: None
|
upload_data_thread.run = lambda x: None
|
||||||
|
|
|
@ -18,4 +18,4 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
import publisher_warranty_contract
|
from . import publisher_warranty_contract
|
||||||
|
|
|
@ -110,7 +110,7 @@ class MassEditingWizard(orm.TransientModel):
|
||||||
etree.SubElement(xml_group, 'field', {
|
etree.SubElement(xml_group, 'field', {
|
||||||
'name': "selection__" + field.name,
|
'name': "selection__" + field.name,
|
||||||
'colspan': '2',
|
'colspan': '2',
|
||||||
'colspan': '2'})
|
})
|
||||||
etree.SubElement(xml_group, 'field', {
|
etree.SubElement(xml_group, 'field', {
|
||||||
'name': field.name, 'nolabel': '1',
|
'name': field.name, 'nolabel': '1',
|
||||||
'attrs': (
|
'attrs': (
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
import model
|
from . import model
|
||||||
|
|
|
@ -50,7 +50,7 @@ class CompanyLDAP(orm.Model):
|
||||||
if not conf['create_user']:
|
if not conf['create_user']:
|
||||||
continue
|
continue
|
||||||
attribute_match = re.search(
|
attribute_match = re.search(
|
||||||
'([a-zA-Z_]+)=\%s', conf['ldap_filter'])
|
r'([a-zA-Z_]+)=\%s', conf['ldap_filter'])
|
||||||
if attribute_match:
|
if attribute_match:
|
||||||
login_attr = attribute_match.group(1)
|
login_attr = attribute_match.group(1)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue