[gametrailers/mtv] Fix pre-3.x compatibility function for find_xpath_attr
authorPhilipp Hagemeister <phihag@phihag.de>
Wed, 22 Jan 2014 00:04:07 +0000 (01:04 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Wed, 22 Jan 2014 00:04:12 +0000 (01:04 +0100)
Fixes #2189

youtube_dl/utils.py

index 70f28414981111d63fb74c00f3ea554702042ea7..9ab7288cc84668f8533716ee4866d97a0ff3b6f7 100644 (file)
@@ -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: