mercurial/keepalive.py
changeset 10394 4612cded5176
parent 10282 08a0f04b56bd
child 14494 1ffeeb91c55d
--- 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: