Update to tip.
authorBryan O'Sullivan <bos@serpentine.com>
Fri, 12 Aug 2005 07:42:32 -0800
changeset 883 63ca8a68d59e
parent 880 409a9a7b0da2 (current diff)
parent 882 bc9ca4d51d23 (diff)
child 884 087771ebe2e6
Update to tip.
.hgignore
CONTRIBUTORS
TODO
doc/hg.1.txt
mercurial/commands.py
mercurial/hg.py
mercurial/hgweb.py
mercurial/revlog.py
mercurial/util.py
templates/map
tests/test-help
tests/test-help.out
--- a/mercurial/hgweb.py	Fri Aug 12 07:12:08 2005 -0800
+++ b/mercurial/hgweb.py	Fri Aug 12 07:42:32 2005 -0800
@@ -708,7 +708,12 @@
     import BaseHTTPServer
 
     class IPv6HTTPServer(BaseHTTPServer.HTTPServer):
-        address_family = socket.AF_INET6
+        address_family = getattr(socket, 'AF_INET6', None)
+
+        def __init__(self, *args, **kwargs):
+            if self.address_family is None:
+                raise RepoError('IPv6 not available on this system')
+            BaseHTTPServer.HTTPServer.__init__(self, *args, **kwargs)
 
     class hgwebhandler(BaseHTTPServer.BaseHTTPRequestHandler):
         def log_error(self, format, *args):