misc: apply double-quote-string-fixer (#79788)

This commit is contained in:
Valentin Deniaud 2023-08-16 11:53:18 +02:00
parent c5a57845fb
commit 3fe0ee2cbb
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ inkscape = subprocess.Popen(
)
for line in inkscape.stdout:
if "dbus_" in line and ": assertion 'connection != NULL' failed" in line:
if 'dbus_' in line and ": assertion 'connection != NULL' failed" in line:
continue
sys.stdout.write(line)

View File

@ -64,7 +64,7 @@ root = etree.fromstring(header_content, parser=html_parser)
for link in root.xpath('//li[@class="compte"]'):
for child in link:
link.remove(child)
link.text = "{% block user-info %}{% endblock %}"
link.text = '{% block user-info %}{% endblock %}'
header_content = etree.tostring(root, method='html').decode()