dabo Commit
Revision 7241
Date: 2012-09-05 13:49:10 -0700 (Wed, 05 Sep 2012)
Author: Paul
Trac: http://trac.dabodev.com/changeset/7241
Changed:
U trunk/dabo/lib/reportWriter.py
Log:
I had an off-by-two (!) error in my most recent commit. Fixed.
Diff:
Modified: trunk/dabo/lib/reportWriter.py
===================================================================
--- trunk/dabo/lib/reportWriter.py 2012-08-31 19:43:40 UTC (rev 7240)
+++ trunk/dabo/lib/reportWriter.py 2012-09-05 20:49:10 UTC (rev 7241)
@@ -2286,7 +2286,7 @@
# Move to the next page or column
headers_reprinted = False
if self._currentColumn >= columnCount-1:
- if self.RecordNumber <
len(self.Cursor)-1:
+ if self.RecordNumber <=
len(self.Cursor):
# Move to next page
self.being_deferred =
True
endPage()
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message:
http://leafe.com/archives/byMID/[email protected]