diff mercurial/keepalive.py @ 7868:2b901f9b37aa

keepalive: fix reference to IncompleteRead
author Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
date Mon, 23 Mar 2009 11:12:01 +0100
parents a45206455d85
children d812029cda85
line wrap: on
line diff
--- a/mercurial/keepalive.py	Mon Mar 23 10:48:45 2009 +0100
+++ b/mercurial/keepalive.py	Mon Mar 23 11:12:01 2009 +0100
@@ -408,7 +408,7 @@
                     # close the connection as protocol synchronisation is
                     # probably lost
                     self.close()
-                    raise IncompleteRead(value)
+                    raise httplib.IncompleteRead(value)
                 if chunk_left == 0:
                     break
             if amt is None: