diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-07-25 11:39:17 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-07-25 11:39:17 +0200 |
commit | cbf915f3f63a85e090d561fe4de218b55cb7fa59 (patch) | |
tree | 4c8e91c5526dc6c3b3d918a46915a2a476390a9a /youtube_dl/utils.py | |
parent | b490b8849a01d4406bb8ed35cec928882909e3a4 (diff) |
[livestream] Parse SMIL (#2713)
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 3ecd798d7..0d0bbe8f6 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -242,8 +242,8 @@ else: if sys.version_info >= (2,7): def find_xpath_attr(node, xpath, key, val): """ Find the xpath xpath[@key=val] """ - assert re.match(r'^[a-zA-Z]+$', key) - assert re.match(r'^[a-zA-Z0-9@\s:._]*$', val) + assert re.match(r'^[a-zA-Z-]+$', key) + assert re.match(r'^[a-zA-Z0-9@\s:._-]*$', val) expr = xpath + u"[@%s='%s']" % (key, val) return node.find(expr) else: |