[mtv] Update tests and xpath function for new title extraction

This commit is contained in:
Philipp Hagemeister 2014-01-22 02:04:51 +01:00
parent 2250865fb0
commit af1588c05f
3 changed files with 3 additions and 3 deletions

View 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: