flake8 error fixed

This commit is contained in:
Gervais Naoussi 2015-11-13 15:36:00 -05:00
parent c39cfcf4e8
commit 56b28d2a9e
3 changed files with 16 additions and 18 deletions

View File

@ -32,4 +32,4 @@ script:
after_success: after_success:
coveralls - travis_after_tests_success

View File

@ -1,4 +1,3 @@
"""Knowledge Management System module."""
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
@ -20,20 +19,20 @@
# #
############################################################################## ##############################################################################
{ {
'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': 'AGPL-3', "license": "AGPL-3",
'website': 'https://www.odoo.com', "website": "https://www.odoo.com",
'data': [ "data": [
'security/knowledge.xml', "security/knowledge.xml",
'security/ir.model.access.csv', "security/ir.model.access.csv",
'views/knowledge.xml', "views/knowledge.xml",
'views/res_config.xml', "views/res_config.xml",
], ],
'demo': ['demo/knowledge.xml'], "demo": ["demo/knowledge.xml"],
'installable': True, "installable": True,
'auto_install': False, "auto_install": False,
} }

View File

@ -1,5 +1,4 @@
"""model's module imported.""" """model's module imported."""
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #