Lazy tables recursion fix 3, thanks Michele and Anthony
This commit is contained in:
2
VERSION
2
VERSION
@@ -1 +1 @@
|
||||
Version 2.6.0-development+timestamp.2013.09.05.17.25.20
|
||||
Version 2.6.0-development+timestamp.2013.09.06.13.54.33
|
||||
|
||||
@@ -7006,7 +7006,8 @@ class Row(object):
|
||||
return ogetattr(self, key)
|
||||
except (KeyError,AttributeError,TypeError), ae:
|
||||
try:
|
||||
return ogetattr(self,'__get_lazy_reference__')(key)
|
||||
self[key] = ogetattr(self,'__get_lazy_reference__')(key)
|
||||
return self[key]
|
||||
except:
|
||||
raise ae
|
||||
|
||||
|
||||
Reference in New Issue
Block a user