From 8ee6f71b1a09f4077e22c840a16833518c56089a Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 15 Feb 2024 14:02:22 -0700 Subject: [PATCH] Fix formatting buglet in python.c python.c has a split string that is missing a space. There's also a stray backslash in this code. Reviewed-By: Tom de Vries --- gdb/python/python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/python/python.c b/gdb/python/python.c index 7b0997c8d52..b2e8f244f85 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -1601,7 +1601,7 @@ gdbpy_print_stack (void) /* An error occurred computing the string representation of the error message. */ gdb_printf (gdb_stderr, - _("Error occurred computing Python error" \ + _("Error occurred computing Python error " "message.\n")); PyErr_Clear (); } -- 2.47.3