[Zope-Checkins]
SVN: Zope/branches/ajung-zcatalog-progress/lib/python/Products/ZCatalog/ProgressHandler.py
wrapped lines
Andreas Jung
andreas at andreas-jung.com
Fri Jul 16 06:05:08 EDT 2004
Log message for revision 26574:
wrapped lines
Changed:
U Zope/branches/ajung-zcatalog-progress/lib/python/Products/ZCatalog/ProgressHandler.py
-=-
Modified: Zope/branches/ajung-zcatalog-progress/lib/python/Products/ZCatalog/ProgressHandler.py
===================================================================
--- Zope/branches/ajung-zcatalog-progress/lib/python/Products/ZCatalog/ProgressHandler.py 2004-07-16 10:03:52 UTC (rev 26573)
+++ Zope/branches/ajung-zcatalog-progress/lib/python/Products/ZCatalog/ProgressHandler.py 2004-07-16 10:05:08 UTC (rev 26574)
@@ -73,7 +73,8 @@
def report(self, current, *args, **kw):
if current % self._steps == 0:
- self.output('%d/%d (%.2f%%)' % (current, self._max, (100.0 * current / self._max)))
+ self.output('%d/%d (%.2f%%)' % (current, self._max,
+ (100.0 * current / self._max)))
def output(self, text):
print >>self.fp, '%s: %s' % (self._ident, text)
More information about the Zope-Checkins
mailing list