youtube-dl

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

commit e07237f6403fe2c18212b36e27bb630dd8e5cef1
parent 8c5a9944246d459f0eac876ae358dedb32fc890a
Author: remitamine <remitamine@gmail.com>
Date:   Wed,  2 Mar 2016 21:40:21 +0100

[utils] remove check for val from find_xpath_attr

Diffstat:
Myoutube_dl/utils.py | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -160,8 +160,6 @@ if sys.version_info >= (2, 7): def find_xpath_attr(node, xpath, key, val=None): """ Find the xpath xpath[@key=val] """ assert re.match(r'^[a-zA-Z_-]+$', key) - if val: - assert re.match(r'^[a-zA-Z0-9@\s:._-]*$', val) expr = xpath + ('[@%s]' % key if val is None else "[@%s='%s']" % (key, val)) return node.find(expr) else: