aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2024-02-15 14:02:22 -0700
committerTom Tromey <tromey@adacore.com>2024-02-27 09:46:31 -0700
commit8ee6f71b1a09f4077e22c840a16833518c56089a (patch)
treef372ea9821657acd9a89dc6dae5a6ef8659704ef /gdb/python
parent5c92d8456d3120bcfbbd0ad063d423411a8c685d (diff)
downloadgdb-8ee6f71b1a09f4077e22c840a16833518c56089a.zip
gdb-8ee6f71b1a09f4077e22c840a16833518c56089a.tar.gz
gdb-8ee6f71b1a09f4077e22c840a16833518c56089a.tar.bz2
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 <tdevries@suse.de>
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c
index 7b0997c..b2e8f244 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 ();
}