[Erp5-report] r26530 - /erp5/trunk/products/ERP5/Document/Movement.py

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Apr 20 18:19:05 CEST 2009


Author: kazuhiko
Date: Mon Apr 20 18:19:05 2009
New Revision: 26530

URL: http://svn.erp5.org?rev=26530&view=rev
Log:
fix syntax errors.

Modified:
    erp5/trunk/products/ERP5/Document/Movement.py

Modified: erp5/trunk/products/ERP5/Document/Movement.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Movement.py?rev=26530&r1=26529&r2=26530&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Movement.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/Movement.py [utf8] Mon Apr 20 18:19:05 2009
@@ -1073,14 +1073,14 @@
   def getSourceArrowList(self, context=None):
     # Naive implementation - XXX
     return self._getCategoryMembershipList(self, ('source', 'source_section', 'source_project', 
-                                                  'source_trade', 'source_function', )):
+                                                  'source_trade', 'source_function', ))
 
   security.declareProtected(Permissions.AccessContentsInformation, 'getDestinationArrowList')
   def getDestinationArrowList(self, context=None):
     # Naive implementation - XXX
     return self._getCategoryMembershipList(self, ('destination', 'destination_section',
                                                   'destination_project', 
-                                                  'destination_trade', 'destination_function', )):
+                                                  'destination_trade', 'destination_function', ))
 
   security.declareProtected(Permissions.ModifyPortalContent, 'setSourceArrowList')
   def setSourceArrowList(self, path):




More information about the Erp5-report mailing list