Commit 9817d898 authored by Vincent Pelletier's avatar Vincent Pelletier

Actually remove the attribute containing the cache so that custom __getattr__...

Actually remove the attribute containing the cache so that custom __getattr__ correctly triggers cache fill.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@11991 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5da31179
......@@ -27,7 +27,7 @@ def CMFCoreSkinsTool_manage_skinLayers(self, *args, **kw):
"""
if getattr(self, '_v_skin_location_list', None) is not None:
self._p_changed = 1
self._v_skin_location_list.clear()
delattr(self, '_v_skin_location_list')
return original_manage_skinLayers(self, *args, **kw)
def CMFCoreSkinsTool__updateCacheEntry(self, container_id, object_id):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment