[FIX] pylint

pull/88/head
Jonathan Nemry 2014-12-03 10:01:54 +01:00
parent 25ee0ff38a
commit 01da73caaa
6 changed files with 6 additions and 7 deletions

View File

@ -18,5 +18,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import test_serialized
from test_serialized import TestBaseFieldSerialized
from . import test_serialized

View File

@ -18,7 +18,7 @@
# 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
upload_data_thread.run = lambda x: None

View File

@ -18,4 +18,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import publisher_warranty_contract
from . import publisher_warranty_contract

View File

@ -110,7 +110,7 @@ class MassEditingWizard(orm.TransientModel):
etree.SubElement(xml_group, 'field', {
'name': "selection__" + field.name,
'colspan': '2',
'colspan': '2'})
})
etree.SubElement(xml_group, 'field', {
'name': field.name, 'nolabel': '1',
'attrs': (

View File

@ -1 +1 @@
import model
from . import model

View File

@ -50,7 +50,7 @@ class CompanyLDAP(orm.Model):
if not conf['create_user']:
continue
attribute_match = re.search(
'([a-zA-Z_]+)=\%s', conf['ldap_filter'])
r'([a-zA-Z_]+)=\%s', conf['ldap_filter'])
if attribute_match:
login_attr = attribute_match.group(1)
else: