changeset 17424 | e7cfe3587ea4 |
parent 16683 | 525fdb738975 |
child 17428 | 72803c8edaa4 |
--- a/mercurial/url.py Tue Aug 28 17:59:08 2012 -0500 +++ b/mercurial/url.py Wed Aug 15 22:38:42 2012 +0200 @@ -175,7 +175,7 @@ self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.sock.connect((self.host, self.port)) if _generic_proxytunnel(self): - # we do not support client x509 certificates + # we do not support client X.509 certificates self.sock = sslutil.ssl_wrap_socket(self.sock, None, None) else: keepalive.HTTPConnection.connect(self)