Fix test_ssl_presence when ssl is not present
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py
index 84e369b..6fe8224 100644
--- a/Lib/test/test_xmlrpc.py
+++ b/Lib/test/test_xmlrpc.py
@@ -152,8 +152,8 @@
     def test_ssl_presence(self):
         try:
             import ssl
-        except:
-            have_ssl = False
+        except ImportError:
+            has_ssl = False
         else:
             has_ssl = True
         try: