diff mbox series

tests/docker: avoid invalid escape in Python string

Message ID 20231016062300.160160-1-pbonzini@redhat.com
State New
Headers show
Series tests/docker: avoid invalid escape in Python string | expand

Commit Message

Paolo Bonzini Oct. 16, 2023, 6:23 a.m. UTC
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>
---
 tests/docker/docker.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Manos Pitsidianakis Oct. 16, 2023, 9 a.m. UTC | #1
On Mon, 16 Oct 2023 09:23, Paolo Bonzini <pbonzini@redhat.com> wrote:
>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>
>---
> tests/docker/docker.py | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/tests/docker/docker.py b/tests/docker/docker.py
>index 688ef62989c..3b8a26704df 100755
>--- a/tests/docker/docker.py
>+++ b/tests/docker/docker.py
>@@ -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" %
>-- 
>2.41.0
>
>

Reviewed-by: Emmanouil Pitsidianakis <manos.pitsidianakis@linaro.org>
Philippe Mathieu-Daudé Oct. 16, 2023, 1:42 p.m. UTC | #2
On 16/10/23 08:23, Paolo Bonzini wrote:
> 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>
> ---
>   tests/docker/docker.py | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Alex Bennée Oct. 19, 2023, 12:33 p.m. UTC | #3
Paolo Bonzini <pbonzini@redhat.com> writes:

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

Queued to testing/next, thanks.
diff mbox series

Patch

diff --git a/tests/docker/docker.py b/tests/docker/docker.py
index 688ef62989c..3b8a26704df 100755
--- a/tests/docker/docker.py
+++ b/tests/docker/docker.py
@@ -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" %