mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-04-18 13:19:12 -04:00
9 lines
165 B
Python
9 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
|