From 2f4cbf6e9bd915ad11e605ddcdc03594aeee0fc7 Mon Sep 17 00:00:00 2001
From: Kazuhiko Shiozaki <kazuhiko@nexedi.com>
Date: Mon, 29 Apr 2013 16:38:30 +0200
Subject: [PATCH] fix lint warning: unexpected end of line; it is ambiguous
 whether these lines are part of the same statement

---
 product/ERP5Form/CaptchasDotNet.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/product/ERP5Form/CaptchasDotNet.py b/product/ERP5Form/CaptchasDotNet.py
index d0956d31b1..026dbd4232 100644
--- a/product/ERP5Form/CaptchasDotNet.py
+++ b/product/ERP5Form/CaptchasDotNet.py
@@ -110,8 +110,7 @@ class CaptchasDotNet:
           var image = document.getElementById ('%(id)s');
           image.onerror = function() {return captchas_image_error (image);};
           image.onload = function() {return captchas_image_loaded (image);};
-          image.timeout 
-            = window.setTimeout(
+          image.timeout = window.setTimeout(
                "captchas_image_error (document.getElementById ('%(id)s'))",
                10000);
           image.src = image.src;
-- 
2.30.9