mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 13:11:15 -07:00
8 lines
165 B
Python
8 lines
165 B
Python
from future.utils import PY3
|
|
|
|
if PY3:
|
|
from http.client import *
|
|
else:
|
|
from httplib import *
|
|
from httplib import HTTPMessage
|
|
__future_module__ = True
|