debian-koji/koji/ssl/__init__.py
2016-10-25 17:16:12 -04:00

8 lines
240 B
Python

# identify this as the ssl module
# our own ssl submodule masks python's in the main lib, so we import this here
try:
import ssl # python's ssl module
except ImportError: # pragma: no cover
# ssl module added in 2.6
pass