[Erp5-report] r39214 nicolas - /erp5/trunk/products/ERP5/mixin/cached_convertable.py

nobody at svn.erp5.org nobody at svn.erp5.org
Fri Oct 15 10:22:27 CEST 2010


Author: nicolas
Date: Fri Oct 15 10:22:25 2010
New Revision: 39214

URL: http://svn.erp5.org?rev=39214&view=rev
Log:
Fix typo, do not pass self as argument

Modified:
    erp5/trunk/products/ERP5/mixin/cached_convertable.py

Modified: erp5/trunk/products/ERP5/mixin/cached_convertable.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/mixin/cached_convertable.py?rev=39214&r1=39213&r2=39214&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/mixin/cached_convertable.py [utf8] (original)
+++ erp5/trunk/products/ERP5/mixin/cached_convertable.py [utf8] Fri Oct 15 10:22:25 2010
@@ -93,7 +93,7 @@ class CachedConvertableMixin:
   def generateCacheId(self, **kw):
     """
     """
-    return self._getCacheKey(self, **kw)
+    return self._getCacheKey(**kw)
 
   def _getCacheKey(self, **kw):
     """




More information about the Erp5-report mailing list