diff options
Diffstat (limited to 'gdb/python/py-objfile.c')
-rw-r--r-- | gdb/python/py-objfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/python/py-objfile.c b/gdb/python/py-objfile.c index 1b924d5..23655c6 100644 --- a/gdb/python/py-objfile.c +++ b/gdb/python/py-objfile.c @@ -93,14 +93,14 @@ objfpy_set_printers (PyObject *o, PyObject *value, void *ignore) if (! value) { PyErr_SetString (PyExc_TypeError, - "cannot delete the pretty_printers attribute"); + _("Cannot delete the pretty_printers attribute.")); return -1; } if (! PyList_Check (value)) { PyErr_SetString (PyExc_TypeError, - "the pretty_printers attribute must be a list"); + _("The pretty_printers attribute must be a list.")); return -1; } |