From 447a85494f045747063f7cc96c1cc1ff2a2ce88a Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Thu, 21 May 2015 08:56:24 +0200 Subject: [PATCH] fix: use double quotes instead of simple quotes !minor This is to stick to ``oem`` output, and thus minimize diffs. --- {{name}}/__openerp__.py | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/{{name}}/__openerp__.py b/{{name}}/__openerp__.py index 701f89f..2edb6a2 100644 --- a/{{name}}/__openerp__.py +++ b/{{name}}/__openerp__.py @@ -1,31 +1,31 @@ # -*- coding: utf-8 -*- { - 'name': '{{name}}', - 'version': '{{version}}', - 'author': '{{author}}', - 'category': '{{category}}', - 'complexity': 'normal', + "name": "{{name}}", + "version": "{{version}}", + "author": "{{author}}", + "category": "{{category}}", + "complexity": "normal", {%- if website %} - 'website': '{{ website }}', + "website": "{{ website }}", {%- endif %} - 'data': [ - 'data/templates.xml', - 'security/security.xml', - 'security/ir.model.access.csv', - 'views/view.xml', - 'actions/act_window.xml', - 'menu.xml', - 'data/data.xml', + "data": [ + "data/templates.xml", + "security/security.xml", + "security/ir.model.access.csv", + "views/view.xml", + "actions/act_window.xml", + "menu.xml", + "data/data.xml", ], - 'depends': [ - 'base', + "depends": [ + "base", ], - 'qweb': [ + "qweb": [ "static/src/xml/*.xml", ], - 'test': [ + "test": [ ], - 'installable': True, - 'auto_install': False, + "installable": True, + "auto_install": False, }