1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-22 17:15:39 +07:00

Merge branch 'master' of https://github.com/rg3/youtube-dl into bilibili

This commit is contained in:
remitamine
2015-12-03 20:05:11 +01:00
185 changed files with 3874 additions and 1657 deletions

View File

@@ -3,9 +3,11 @@
import re
import json
import xml.etree.ElementTree as ET
from .common import InfoExtractor
from ..compat import (
compat_etree_fromstring,
)
from ..utils import (
int_or_none,
unescapeHTML,
@@ -68,7 +70,7 @@ def _real_extract(self, url):
except ValueError:
pass
doc = ET.fromstring(page)
doc = compat_etree_fromstring(page)
entries = []