mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-24 17:38:42 -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',
|
'name': 'Knowledge Management System',
|
||||||
'version' : '9.0.1.0.0',
|
'version': '9.0.1.0.0',
|
||||||
'depends' : ['base','base_setup'],
|
'depends': ['base', 'base_setup'],
|
||||||
'author' : ['OpenERP SA','Odoo Community Association (OCA)'],
|
'author': ['OpenERP SA', 'Odoo Community Association (OCA)'],
|
||||||
'category': 'Hidden/Dependency',
|
'category': 'Hidden/Dependency',
|
||||||
'license': 'AGPL3',
|
'license': 'AGPL3',
|
||||||
'website': 'https://www.odoo.com',
|
'website': 'https://www.odoo.com',
|
||||||
|
@ -21,10 +21,13 @@
|
|||||||
|
|
||||||
from openerp import models, fields
|
from openerp import models, fields
|
||||||
|
|
||||||
|
|
||||||
class KnowledgeConfigSettings(models.TransientModel):
|
class KnowledgeConfigSettings(models.TransientModel):
|
||||||
_name = 'knowledge.config.settings'
|
_name = 'knowledge.config.settings'
|
||||||
_inherit = 'res.config.settings'
|
_inherit = 'res.config.settings'
|
||||||
|
|
||||||
module_document = fields.Boolean('Manage documents',
|
module_document = fields.Boolean(
|
||||||
help='Document indexation, full text search of attachements.\n'
|
'Manage documents',
|
||||||
'-This installs the module document.')
|
help='Document indexation, full text search of attachements.\n'
|
||||||
|
'-This installs the module document.'
|
||||||
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user