Commit 86a7c908 authored by Jérome Perrin's avatar Jérome Perrin

remove an useless LOG


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3403 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 611ab571
......@@ -111,10 +111,9 @@ class DeliveryCell(MappedValue, Movement):
# then it creates an exception
if key in self.getMappedValuePropertyList([]):
if getattr(self, key, None) is not None:
LOG("Found Prop",0,"")
return getattr(self, key)
else:
LOG("Not Found Prop",0,"")
LOG("Not Found Property %s"%key, -100,"")
return self.aq_parent.getProperty(key)
#except:
# LOG("WARNING: ERP5", 0, 'Could not access mapped value property %s' % key)
......
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