diff -r 3b717f27ffea -r c9cf171f30dd mercurial/util.py --- 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)