From 045285123f2551ca74753260fcf807af4bc413d0 Mon Sep 17 00:00:00 2001
From: Christophe Simonis <chs@odoo.com>
Date: Tue, 27 May 2014 18:46:18 +0200
Subject: [PATCH] [FIX] website: correct bad code indentation introduced during
 previous commit

---
 addons/website/models/ir_http.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/addons/website/models/ir_http.py b/addons/website/models/ir_http.py
index d348d171076d..a8f63a1cf9ed 100644
--- a/addons/website/models/ir_http.py
+++ b/addons/website/models/ir_http.py
@@ -130,9 +130,9 @@ class ir_http(orm.AbstractModel):
             return super(ir_http, self)._handle_exception(exception)
         except Exception:
 
-        attach = self._serve_attachment()
-        if attach:
-            return attach
+            attach = self._serve_attachment()
+            if attach:
+                return attach
 
             if getattr(request, 'website_enabled', False) and request.website:
                 values = dict(
-- 
GitLab