merge with crew
authorMatt Mackall <mpm@selenic.com>
Wed, 28 Sep 2011 13:57:48 -0500
changeset 15161 f3edee8dc40c
parent 15159 85322c19c831 (current diff)
parent 15160 b2d4400398f3 (diff)
child 15162 d67a15b2e608
merge with crew
--- a/mercurial/sslutil.py	Tue Sep 27 18:50:18 2011 -0500
+++ b/mercurial/sslutil.py	Wed Sep 28 13:57:48 2011 -0500
@@ -22,6 +22,8 @@
 
     def ssl_wrap_socket(sock, key_file, cert_file,
                         cert_reqs=CERT_REQUIRED, ca_certs=None):
+        if not util.safehasattr(socket, 'ssl'):
+            raise util.Abort(_('Python SSL support not found'))
         if ca_certs:
             raise util.Abort(_(
                 'certificate checking requires Python 2.6'))