From 991323c4664b751e79f0c7e32a355d3a59e9d592 Mon Sep 17 00:00:00 2001 From: Raphael Collet Date: Mon, 25 Jun 2012 14:40:37 +0200 Subject: [PATCH] [FIX] plugin_outlook: wrong indentation in code bzr revid: rco@openerp.com-20120625124037-18rg0a4rum9vroml --- addons/plugin_outlook/plugin_outlook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/plugin_outlook/plugin_outlook.py b/addons/plugin_outlook/plugin_outlook.py index 9da90f3839c..4fc1f391fab 100644 --- a/addons/plugin_outlook/plugin_outlook.py +++ b/addons/plugin_outlook/plugin_outlook.py @@ -36,7 +36,7 @@ class outlook_installer(osv.osv_memory): res = super(outlook_installer, self).default_get(cr, uid, fields, context) base_url = self.pool.get('ir.config_parameter').get_param(cr, uid, 'web.base.url') res['plugin32'] = base_url + '/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup32.msi' - res['plugin64'] = base_url + '/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup64.msi' + res['plugin64'] = base_url + '/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup64.msi' return res # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: