summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-01-22 01:04:07 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-01-22 01:04:12 +0100
commit00122de6a9d215651154274ad01ac799d580ed96 (patch)
tree463dc38c5e9fd581f3f24e2fb5dbeeff8c3e2a58
parenta70515c0fd46f83111a0ccb63a70fe3df27fde3e (diff)
downloadyoutube-dl-00122de6a9d215651154274ad01ac799d580ed96.tar.gz
youtube-dl-00122de6a9d215651154274ad01ac799d580ed96.tar.xz
youtube-dl-00122de6a9d215651154274ad01ac799d580ed96.zip
[gametrailers/mtv] Fix pre-3.x compatibility function for find_xpath_attr
Fixes #2189
-rw-r--r--youtube_dl/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 70f284149..9ab7288cc 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: