mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-23 04:22:04 -06:00
flake8 issues fixed in __openerp__py files and knowledge/models/res_config.py
This commit is contained in:
parent
de6be0cc9c
commit
4c095cc203
@ -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',
|
||||
|
@ -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.'
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user