fix compatibility of mtv81 for python3.2/3.3

This commit is contained in:
jackyzy823 2014-07-15 15:06:26 +08:00
parent 1dd76593ff
commit a1f6c6d691

View File

@ -3,13 +3,15 @@
__all__ = ['mtv81_download'] __all__ = ['mtv81_download']
from ..common import * from ..common import *
from html.parser import unescape
from xml.dom.minidom import parseString from xml.dom.minidom import parseString
from html.parser import HTMLParser
def mtv81_download(url, output_dir='.', merge=True, info_only=False): def mtv81_download(url, output_dir='.', merge=True, info_only=False):
html = get_content(url) html = get_content(url)
title = unescape( title = HTMLParser().unescape(
"|".join(match1(html, r"<title>(.*?)</title>").split("|")[:-2])) "|".join(match1(html, r"<title>(.*?)</title>").split("|")[:-2]))
# mgid%3Auma%3Avideo%3Amtv81.com%3A897974 # mgid%3Auma%3Avideo%3Amtv81.com%3A897974