aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/utils.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-08-29 19:16:07 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-08-29 19:16:07 +0200
commit545434670b7b055a7f0ff82b76ee7acbb3d07dd3 (patch)
treef516e750374ae936e87f5b86675b7ccffbdfc781 /youtube_dl/utils.py
parent54fda45bace9d37135a4d29a03130b22ed272ce5 (diff)
downloadyoutube-dl-545434670b7b055a7f0ff82b76ee7acbb3d07dd3.tar.xz
Add an extractor for orf.at (closes #1346)
Make find_xpath_attr also accept numbers in the value
Diffstat (limited to 'youtube_dl/utils.py')
-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 b3d0f64ea..201802cee 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -213,7 +213,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-Z@\s]*$', val)
+ assert re.match(r'^[a-zA-Z0-9@\s]*$', val)
expr = xpath + u"[@%s='%s']" % (key, val)
return node.find(expr)
else: