From df6cda9cf9f632364c72f7a531abf770e29e9bec Mon Sep 17 00:00:00 2001
From: Fabien Morin <fabien@nexedi.com>
Date: Mon, 20 Apr 2009 09:55:37 +0000
Subject: [PATCH] typo : fix indentation

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26518 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/Document/PaySheetModelLine.py | 60 +++++++++++-----------
 1 file changed, 30 insertions(+), 30 deletions(-)

diff --git a/product/ERP5/Document/PaySheetModelLine.py b/product/ERP5/Document/PaySheetModelLine.py
index afa84d838f..fd48db6459 100644
--- a/product/ERP5/Document/PaySheetModelLine.py
+++ b/product/ERP5/Document/PaySheetModelLine.py
@@ -34,37 +34,37 @@ from Products.ERP5.Document.PaySheetLine import PaySheetLine
 from zLOG import LOG
 
 class PaySheetModelLine(PaySheetLine, Predicate):
-    """
-      A PaySheetModelLine object allows to implement lines in
-      PaySheetModel.
-      A PaySheetModelLine contain all parameters witch make it possible to
-      calculate a service contribution.
-    """
+  """
+    A PaySheetModelLine object allows to implement lines in
+    PaySheetModel.
+    A PaySheetModelLine contain all parameters witch make it possible to
+    calculate a service contribution.
+  """
 
-    meta_type = 'ERP5 Pay Sheet Model Line'
-    portal_type = 'Pay Sheet Model Line'
-    add_permission = Permissions.AddPortalContent
-    isPortalContent = 1
-    isRADContent = 1
+  meta_type = 'ERP5 Pay Sheet Model Line'
+  portal_type = 'Pay Sheet Model Line'
+  add_permission = Permissions.AddPortalContent
+  isPortalContent = 1
+  isRADContent = 1
 
-    # Declarative security
-    security = ClassSecurityInfo()
-    security.declareObjectProtected(Permissions.AccessContentsInformation)
+  # Declarative security
+  security = ClassSecurityInfo()
+  security.declareObjectProtected(Permissions.AccessContentsInformation)
 
-    # Declarative interfaces
-    __implements__ = ( Interface.Variated, )
+  # Declarative interfaces
+  __implements__ = ( Interface.Variated, )
 
-    # Declarative properties
-    property_sheets = ( PropertySheet.Base
-                      , PropertySheet.XMLObject
-                      , PropertySheet.CategoryCore
-                      , PropertySheet.Amount
-                      , PropertySheet.Task
-                      , PropertySheet.Arrow
-                      , PropertySheet.Movement
-                      , PropertySheet.Price
-                      , PropertySheet.VariationRange
-                      , PropertySheet.MappedValue
-                      , PropertySheet.PaySheetModelLine
-                      , PropertySheet.Predicate
-                      )
+  # Declarative properties
+  property_sheets = ( PropertySheet.Base
+                    , PropertySheet.XMLObject
+                    , PropertySheet.CategoryCore
+                    , PropertySheet.Amount
+                    , PropertySheet.Task
+                    , PropertySheet.Arrow
+                    , PropertySheet.Movement
+                    , PropertySheet.Price
+                    , PropertySheet.VariationRange
+                    , PropertySheet.MappedValue
+                    , PropertySheet.PaySheetModelLine
+                    , PropertySheet.Predicate
+                    )
-- 
2.30.9