mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 11:55:03 -05:00
13 lines
256 B
Python
13 lines
256 B
Python
try:
|
|
from urllib.parse import urljoin
|
|
except ImportError:
|
|
from urlparse import urljoin
|
|
|
|
|
|
try:
|
|
import email.utils
|
|
parsedate_tz = email.utils.parsedate_tz
|
|
except ImportError:
|
|
import email.Utils
|
|
parsedate_tz = email.Utils.parsedate_tz
|