tests/docker: avoid invalid escape in Python string

This is an error in Python 3.12; fix it by using a raw string literal.

Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
(cherry picked from commit a5e3cb3b90)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
Paolo Bonzini 2023-10-16 08:22:56 +02:00 committed by Michael Tokarev
parent 663aca79f9
commit adbbddf90b
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ def _check_binfmt_misc(executable):
(binary))
return None, True
m = re.search("interpreter (\S+)\n", entry)
m = re.search(r"interpreter (\S+)\n", entry)
interp = m.group(1)
if interp and interp != executable:
print("binfmt_misc for %s does not point to %s, using %s" %