Commit 0badf153 authored by Jim Fulton's avatar Jim Fulton

Fixed a caching bug that caused records to miss acquisition wrapping.

parent 744b9489
......@@ -168,10 +168,10 @@ class Results:
if index==self._index: return self._row
parent=self._parent
fields=self._class(self._data[index], parent)
if parent is not None: fields=fields.__of__(parent)
self._index=index
self._row=fields
if parent is None: return fields
return fields.__of__(parent)
return fields
def tuples(self):
return map(tuple, self)
......
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