From d68ea0ce9103e87a31d1a371145eda7a1a3bf99a Mon Sep 17 00:00:00 2001 From: tarteo Date: Wed, 31 May 2017 11:34:42 +0200 Subject: [PATCH] [FIX] Removed single quotes from manifest --- web_favicon/__manifest__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web_favicon/__manifest__.py b/web_favicon/__manifest__.py index f12886f5..d70733a7 100644 --- a/web_favicon/__manifest__.py +++ b/web_favicon/__manifest__.py @@ -13,11 +13,11 @@ "category": "Website", "summary": "Allows to set a custom shortcut icon (aka favicon)", "depends": [ - 'web', + "web", ], "data": [ - 'views/res_company.xml', - 'views/templates.xml', + "views/res_company.xml", + "views/templates.xml", ], - 'installable': True, + "installable": True, }