diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-07-11 16:16:02 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-07-11 16:16:02 +0200 |
commit | 5de3ece2256584732a4b2c74a499f36577c42008 (patch) | |
tree | 169393b874d51b21cf0ade6d8f43dc29e680a423 /youtube_dl/utils.py | |
parent | df50a41289c4c36ca4ffcca85c97fae6244a0322 (diff) |
[brightcove] fix on Python 2.6
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 76fa2950c..31db1bf8c 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -201,8 +201,8 @@ else: 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-z]+$', key) - assert re.match(r'^[a-z]*$', val) + assert re.match(r'^[a-zA-Z]+$', key) + assert re.match(r'^[a-zA-Z@]*$', val) expr = xpath + u"[@%s='%s']" % (key, val) return node.find(expr) else: |