Lazy tables recursion fix 3, thanks Michele and Anthony

This commit is contained in:
mdipierro
2013-09-06 13:55:34 -05:00
parent b885f7e2b6
commit 82950a621c
2 changed files with 3 additions and 2 deletions

View File

@@ -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

View File

@@ -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