]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/docker: avoid invalid escape in Python string
authorPaolo Bonzini <pbonzini@redhat.com>
Mon, 16 Oct 2023 06:22:56 +0000 (08:22 +0200)
committerMichael Tokarev <mjt@tls.msk.ru>
Thu, 19 Oct 2023 11:52:59 +0000 (14:52 +0300)
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 a5e3cb3b90a62a42cd19ad9a20ca25c7df1dc3da)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
tests/docker/docker.py

index 688ef62989c6817dd39a79f44f44a094c6c05e58..3b8a26704df1987dac947219a3cea47a6121f0b9 100755 (executable)
@@ -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" %