flake8 issues fixed in __openerp__py files and knowledge/models/res_config.py

This commit is contained in:
Gervais Naoussi 2015-10-23 15:48:12 -04:00
parent de6be0cc9c
commit 4c095cc203
2 changed files with 10 additions and 7 deletions

View File

@ -21,10 +21,10 @@
{
'name' : 'Knowledge Management System',
'version' : '9.0.1.0.0',
'depends' : ['base','base_setup'],
'author' : ['OpenERP SA','Odoo Community Association (OCA)'],
'name': 'Knowledge Management System',
'version': '9.0.1.0.0',
'depends': ['base', 'base_setup'],
'author': ['OpenERP SA', 'Odoo Community Association (OCA)'],
'category': 'Hidden/Dependency',
'license': 'AGPL3',
'website': 'https://www.odoo.com',

View File

@ -21,10 +21,13 @@
from openerp import models, fields
class KnowledgeConfigSettings(models.TransientModel):
_name = 'knowledge.config.settings'
_inherit = 'res.config.settings'
module_document = fields.Boolean('Manage documents',
help='Document indexation, full text search of attachements.\n'
'-This installs the module document.')
module_document = fields.Boolean(
'Manage documents',
help='Document indexation, full text search of attachements.\n'
'-This installs the module document.'
)