usenetbinary-newsreaderquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
256 B
13 lines
256 B
11 years ago
|
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
|