mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-12-17 14:45:42 +07:00
[mtv] Update tests and xpath function for new title extraction
This commit is contained in:
@@ -224,7 +224,7 @@ def write_json_file(obj, fn):
|
||||
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:
|
||||
|
||||
Reference in New Issue
Block a user