Merge lp:~vauxoo/openerp-india/trunk-VauxooFixesTest into lp:openerp-india

Proposed by Nhomar - Vauxoo
Status: Merged
Merged at revision: 669
Proposed branch: lp:~vauxoo/openerp-india/trunk-VauxooFixesTest
Merge into: lp:openerp-india
Diff against target: 23 lines (+2/-2)
2 files modified
portal_purchase/__openerp__.py (+1/-1)
web_report_small/__openerp__.py (+1/-1)
To merge this branch: bzr merge lp:~vauxoo/openerp-india/trunk-VauxooFixesTest
Reviewer Review Type Date Requested Status
Mantavya Gajjar (Open ERP) Approve
Review via email: mp+174448@code.launchpad.net

Description of the change

2 Modules are marked as auto_install = True and when we declare only the branch on addons-path on an instance with technical problems the update process brake the instance.

We only change this value to be sure not brake our internal deployment.

To post a comment you must log in.
Revision history for this message
Mantavya Gajjar (Open ERP) (mga) wrote :

thanks for the review, its merged

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'portal_purchase/__openerp__.py'
2--- portal_purchase/__openerp__.py 2013-03-22 11:26:58 +0000
3+++ portal_purchase/__openerp__.py 2013-07-12 15:39:29 +0000
4@@ -50,7 +50,7 @@
5 'portal_purchase_view.xml',
6 'security/ir.model.access.csv',
7 ],
8- 'auto_install': True,
9+ 'auto_install': False,
10 'category': 'Hidden',
11 }
12
13
14=== modified file 'web_report_small/__openerp__.py'
15--- web_report_small/__openerp__.py 2013-04-18 13:08:45 +0000
16+++ web_report_small/__openerp__.py 2013-07-12 15:39:29 +0000
17@@ -11,5 +11,5 @@
18 'js': ['static/src/js/*.js'],
19 'css': ['static/src/css/*.css'],
20 'qweb': ['static/src/xml/*.xml'],
21- 'auto_install': True,
22+ 'auto_install': False,
23 }