youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 00122de6a9d215651154274ad01ac799d580ed96
parent a70515c0fd46f83111a0ccb63a70fe3df27fde3e
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed, 22 Jan 2014 01:04:07 +0100

[gametrailers/mtv] Fix pre-3.x compatibility function for find_xpath_attr

Fixes #2189

Diffstat:
Myoutube_dl/utils.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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: