[PATCH 7 of 7] keepalive: fix reference to IncompleteRead
Peter Arrenbrecht
peter.arrenbrecht at gmail.com
Wed Mar 11 16:43:14 UTC 2009
# HG changeset patch
# User Peter Arrenbrecht <peter.arrenbrecht at gmail.com>
# Date 1236789723 -3600
keepalive: fix reference to IncompleteRead
diff --git a/mercurial/keepalive.py b/mercurial/keepalive.py
--- a/mercurial/keepalive.py
+++ b/mercurial/keepalive.py
@@ -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:
More information about the Mercurial-devel
mailing list