fix: use double quotes instead of simple quotes !minor

This is to stick to ``oem`` output, and thus minimize diffs.
This commit is contained in:
Valentin Lab
2015-05-21 08:56:24 +02:00
parent 196ad017d9
commit 447a85494f

View File

@@ -1,31 +1,31 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
{ {
'name': '{{name}}', "name": "{{name}}",
'version': '{{version}}', "version": "{{version}}",
'author': '{{author}}', "author": "{{author}}",
'category': '{{category}}', "category": "{{category}}",
'complexity': 'normal', "complexity": "normal",
{%- if website %} {%- if website %}
'website': '{{ website }}', "website": "{{ website }}",
{%- endif %} {%- endif %}
'data': [ "data": [
'data/templates.xml', "data/templates.xml",
'security/security.xml', "security/security.xml",
'security/ir.model.access.csv', "security/ir.model.access.csv",
'views/view.xml', "views/view.xml",
'actions/act_window.xml', "actions/act_window.xml",
'menu.xml', "menu.xml",
'data/data.xml', "data/data.xml",
], ],
'depends': [ "depends": [
'base', "base",
], ],
'qweb': [ "qweb": [
"static/src/xml/*.xml", "static/src/xml/*.xml",
], ],
'test': [ "test": [
], ],
'installable': True, "installable": True,
'auto_install': False, "auto_install": False,
} }