From 500328007aa0505a90fc9123af85b385ba839e41 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9rome=20Perrin?= <jerome@nexedi.com>
Date: Mon, 14 Sep 2009 11:34:10 +0000
Subject: [PATCH] wrap lines consistently

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@29028 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5Form/ListBox.py | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/product/ERP5Form/ListBox.py b/product/ERP5Form/ListBox.py
index 0ad9a92dc0..7b7a91e23c 100644
--- a/product/ERP5Form/ListBox.py
+++ b/product/ERP5Form/ListBox.py
@@ -307,12 +307,13 @@ class ListBoxWidget(Widget.Widget):
                                   required=0)
     property_names.append('anchor')
 
-    hide_rows_on_no_search_criterion = \
-      fields.CheckBoxField('hide_rows_on_no_search_criterion', \
-                           title = 'Hide Rows (On No Search Criterion)', \
-                           description = ('Hide listbox rows if no search criterion is provided by user'), \
-                                          default = 0, \
-                                          required = 0)
+    hide_rows_on_no_search_criterion = fields.CheckBoxField(
+                                 'hide_rows_on_no_search_criterion',
+                                 title='Hide Rows (On No Search Criterion)',
+                                 description=('Hide listbox rows if no search '
+                                             'criterion is provided by user'),
+                                                default=0,
+                                                required=0)
     property_names.append('hide_rows_on_no_search_criterion')
 
     editable_columns = fields.ListTextAreaField('editable_columns',
@@ -351,7 +352,8 @@ class ListBoxWidget(Widget.Widget):
     global_attributes = fields.ListTextAreaField('global_attributes',
                                  title="Global Attributes",
                                  description=(
-        "An optional list of attributes which are set by hidden fields and which are applied to each editable column."),
+        "An optional list of attributes which are set by hidden fields and "
+        "which are applied to each editable column."),
                                  default=[],
                                  required=0)
     property_names.append('global_attributes')
-- 
2.30.9