OpenSur / Odoo_addons

Odoo addons published
23 stars 41 forks source link

Manifest character error in website_forum_private #31

Open alejandrosantana opened 9 years ago

alejandrosantana commented 9 years ago

In 8.0 branch, there is a typo in openerp.py in both website_forum_private and website_blog_private. In the line for version, the last quote character is not correct (watch carefully, it is not the same as the initial one).

Therefore, it causes Odoo to fail at init, with a parse error.

Easy to fix, just change:

    'version': '1.01’,

with:

    'version': '1.01',

Affected files:

src/other-addons/OpenSur/Odoo_addons/website_forum_private/__openerp__.py:27:    'version': '1.01’,
src/other-addons/OpenSur/Odoo_addons/website_blog_private/__openerp__.py:27:    'version': '1.01’,
OpenSur commented 9 years ago

Corrected, thanks