~invitu/openerp-mgmtsystem/7-0_fix_security

« back to all changes in this revision

Viewing changes to mgmtsystem_survey/__openerp__.py

  • Committer: Maxime Chambreuil
  • Date: 2013-08-29 19:45:45 UTC
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: maxime.chambreuil@savoirfairelinux.com-20130829194545-ohxyf9pl22x05i0q
[FIX] PEP8 compliance after running flake8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- encoding: utf-8 -*-
2
2
##############################################################################
3
 
#    
 
3
#
4
4
#    OpenERP, Open Source Management Solution
5
5
#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
6
6
#
19
19
#
20
20
##############################################################################
21
21
{
22
 
    "name" : "Management System - Survey",
23
 
    "version" : "1.0",
24
 
    "author" : "Savoir-faire Linux",
25
 
    "website" : "http://www.savoirfairelinux.com",
26
 
    "license" : "AGPL-3",
27
 
    "category" : "Management System",
 
22
    "name": "Management System - Survey",
 
23
    "version": "1.0",
 
24
    "author": "Savoir-faire Linux",
 
25
    "website": "http://www.savoirfairelinux.com",
 
26
    "license": "AGPL-3",
 
27
    "category": "Management System",
28
28
    "description": """This module enables you to manage your satisfaction surveys and its answers.""",
29
 
    "depends" : ['survey'],
30
 
    "data" : ['mgmtsystem_survey.xml',],
31
 
    "demo" : [],
32
 
    "installable" : True,
33
 
    "certificate" : ''
 
29
    "depends": ['survey'],
 
30
    "data": ['mgmtsystem_survey.xml'],
 
31
    "demo": [],
 
32
    "installable": True,
 
33
    "certificate": ''
34
34
}
35
35
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
36