Update line spacing

This commit is contained in:
Michael Mintz 2020-01-18 19:03:37 -05:00
parent 04220cf41e
commit 4e8e747d19
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ def _get_raw_css_from_xpath(xpath):
elif match['contained']:
if match['cattr'].startswith("@"):
attr = '[%s*="%s"]' % (match['cattr'].replace("@", ""),
match['cvalue'])
match['cvalue'])
elif match['cattr'] == "text()":
attr = ":contains(%s)" % match['cvalue']
else: