* python/py-frame.c (frapy_block): Fix error message text.

This commit is contained in:
Doug Evans 2013-11-23 14:36:57 -08:00
parent 1e9c71b81b
commit 1e1d69201b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-11-23 Doug Evans <xdje42@gmail.com>
* python/py-frame.c (frapy_block): Fix error message text.
2013-11-23 Doug Evans <xdje42@gmail.com>
* cli/cli-script.c (multi_line_command_p): New function.

View File

@ -260,7 +260,7 @@ frapy_block (PyObject *self, PyObject *args)
if (block == NULL || fn_block == NULL || BLOCK_FUNCTION (fn_block) == NULL)
{
PyErr_SetString (PyExc_RuntimeError,
_("Cannot locate object file for block."));
_("Cannot locate block for frame."));
return NULL;
}