summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2011-03-09 15:28:48 +0200
committerPanu Matilainen <pmatilai@redhat.com>2011-03-09 15:28:48 +0200
commit32ffdfae8fa340eeaed898af68bdcd24e6fcb28b (patch)
treed6ca5cf1458c8fdccbd20d106f082f300522ecf2
parentf104306f5928bcea09f0ecc622243df9c42fc466 (diff)
downloadlibrpm-tizen-32ffdfae8fa340eeaed898af68bdcd24e6fcb28b.tar.gz
librpm-tizen-32ffdfae8fa340eeaed898af68bdcd24e6fcb28b.tar.bz2
librpm-tizen-32ffdfae8fa340eeaed898af68bdcd24e6fcb28b.zip
Don't bother with the callback die-die-die error translation
-rw-r--r--python/rpmts-py.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/rpmts-py.c b/python/rpmts-py.c
index 671c477b5..4e519f03a 100644
--- a/python/rpmts-py.c
+++ b/python/rpmts-py.c
@@ -160,7 +160,7 @@ static void die(PyObject *cb)
if ((r = PyObject_Repr(cb)) != NULL) {
pyfn = PyBytes_AsString(r);
}
- fprintf(stderr, _("error: python callback %s failed, aborting!\n"),
+ fprintf(stderr, "FATAL ERROR: python callback %s failed, aborting!\n",
pyfn ? pyfn : "???");
rpmdbCheckTerminate(1);
exit(EXIT_FAILURE);