Fix a mistake, https proxy shoud be https://
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index a2b439c..6c4b5f7 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -2279,7 +2279,7 @@
                         proxies['http'] = proxyServer
                     else:
                         proxies['http'] = 'http://%s' % proxyServer
-                        proxies['https'] = 'http://%s' % proxyServer
+                        proxies['https'] = 'https://%s' % proxyServer
                         proxies['ftp'] = 'ftp://%s' % proxyServer
             internetSettings.Close()
         except (WindowsError, ValueError, TypeError):