Mercurial > public > mercurial-scm > hg-stable
diff mercurial/keepalive.py @ 10394:4612cded5176
fix coding style (reported by pylint)
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Mon, 08 Feb 2010 15:36:34 +0100 |
parents | 08a0f04b56bd |
children | 1ffeeb91c55d |
line wrap: on
line diff
--- a/mercurial/keepalive.py Mon Feb 08 15:06:26 2010 +0100 +++ b/mercurial/keepalive.py Mon Feb 08 15:36:34 2010 +0100 @@ -550,10 +550,10 @@ if hasattr(str,'read') : if self.debuglevel > 0: print "sendIng a read()able" - data=str.read(blocksize) + data = str.read(blocksize) while data: self.sock.sendall(data) - data=str.read(blocksize) + data = str.read(blocksize) else: self.sock.sendall(str) except socket.error, v: