fixed issue 1579:Row.__getitem__(): count of 0 raises AttributeError, thanks Dominic
This commit is contained in:
@@ -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
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user