commit | bee49e4a1b0d372d754fb66ffcd75342800f7033 | [log] [tgz] |
---|---|---|
author | Tang Cheng <cheng.tang@supwisdom.com> | 周一 11月 19 10:56:07 2012 +0800 |
committer | Tang Cheng <cheng.tang@supwisdom.com> | 周一 11月 19 10:56:07 2012 +0800 |
tree | f945c5902c4d9a42f2acce10d510f44d11e19577 | |
parent | e009afa338cd4a6b404e076b497853fae46840bb [diff] [blame] |
修改读取记录的bug
diff --git a/supwisdom/protocol/nettrans.py b/supwisdom/protocol/nettrans.py index 6ecac96..0d1df81 100644 --- a/supwisdom/protocol/nettrans.py +++ b/supwisdom/protocol/nettrans.py
@@ -153,7 +153,7 @@ assert self._frozen == True if not self._row_data: return False - if self._row_no < len(self._row_data): + if (self._row_no + 1) < len(self._row_data): return True return False