diff mercurial/util.py @ 1312:c9cf171f30dd

Merge with TAH
author mpm@selenic.com
date Thu, 22 Sep 2005 09:41:34 -0700
parents a6ffcebd3315 2073e5a71008
children 5f277e73778f
line wrap: on
line diff
--- a/mercurial/util.py	Thu Sep 22 09:39:05 2005 -0700
+++ b/mercurial/util.py	Thu Sep 22 09:41:34 2005 -0700
@@ -515,7 +515,7 @@
 
     def read(self, l):
         """Read L bytes of data from the iterator of chunks of data.
-	Returns less than L bytes if the iterator runs dry."""
+        Returns less than L bytes if the iterator runs dry."""
         if l > len(self.buf) and not self.iterempty:
             # Clamp to a multiple of self.targetsize
             targetsize = self.targetsize * ((l // self.targetsize) + 1)