changeset 7868:2b901f9b37aa

keepalive: fix reference to IncompleteRead
author Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
date Mon, 23 Mar 2009 11:12:01 +0100
parents 01bd0efef1b5
children bc027d72c289
files mercurial/keepalive.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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: