We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95eff38 commit 343b4eeCopy full SHA for 343b4ee
example/idp2/idp.py
@@ -5,9 +5,7 @@
5
import logging
6
import os
7
import re
8
-import socket
9
import time
10
-import ssl
11
12
from Cookie import SimpleCookie
13
from hashlib import sha1
@@ -1072,7 +1070,8 @@ def application(environ, start_response):
1072
1070
_https = ""
1073
1071
if CONFIG.HTTPS:
1074
SRV.ssl_adapter = ssl_pyopenssl.pyOpenSSLAdapter(CONFIG.SERVER_CERT,
1075
- CONFIG.SERVER_KEY, CONFIG.CERT_CHAIN)
+ CONFIG.SERVER_KEY,
+ CONFIG.CERT_CHAIN)
1076
_https = " using SSL/TLS"
1077
logger.info("Server starting")
1078
print("IDP listening on %s:%s%s" % (HOST, PORT, _https))
0 commit comments