diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-01-22 02:04:51 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-01-22 02:04:51 +0100 |
commit | af1588c05f308ffa2fdabaa2fc4c38673b4217d8 (patch) | |
tree | de2790d0e43b41d76f7afdf48fa4370c6ae7d0bd /youtube_dl/utils.py | |
parent | 2250865fb09062418e78d79618fefe8817235488 (diff) |
[mtv] Update tests and xpath function for new title extraction
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 9ab7288cc..6c00973bd 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -224,7 +224,7 @@ 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-Z0-9@\s:._]*$', val) expr = xpath + u"[@%s='%s']" % (key, val) return node.find(expr) else: |