Changeset 3068
- Timestamp:
- 04/19/07 03:14:28 (2 years ago)
- Files:
-
- trunk/dabo/biz/dBizobj.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dabo/biz/dBizobj.py
r3054 r3068 604 604 """ 605 605 self.exitScan = False 606 currCursor = self._CurrentCursor 606 607 old_currentCursorKey = self.__currentCursorKey 607 608 try: 608 old_pk = self._CurrentCursor.getPK()609 old_pk = currCursor.getPK() 609 610 except dException.NoRecordsException: 610 611 # no rows to scan … … 614 615 cursors = self.__cursors 615 616 else: 616 cursors = {old_ pk: self._CurrentCursor}617 cursors = {old_currentCursorKey: currCursor} 617 618 618 619 for key, cursor in cursors.iteritems():
