fixed issue 1579:Row.__getitem__(): count of 0 raises AttributeError, thanks Dominic

This commit is contained in:
mdipierro
2013-07-11 11:49:49 -05:00
parent 207105a21e
commit 988ee82496
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.6.0-development+timestamp.2013.07.11.11.34.59
Version 2.6.0-development+timestamp.2013.07.11.11.48.58
+1 -1
View File
@@ -6872,7 +6872,7 @@ class Row(object):
_extra = self.__dict__.get('_extra', None)
if _extra is not None:
v = _extra.get(key, None)
if v:
if v is not None:
return v
m = REGEX_TABLE_DOT_FIELD.match(key)
if m: