From: Panu Matilainen Date: Wed, 9 Mar 2011 13:28:48 +0000 (+0200) Subject: Don't bother with the callback die-die-die error translation X-Git-Tag: rpm-4.10.0-beta1~701 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=32ffdfae8fa340eeaed898af68bdcd24e6fcb28b;p=platform%2Fupstream%2Frpm.git Don't bother with the callback die-die-die error translation --- diff --git a/python/rpmts-py.c b/python/rpmts-py.c index 671c477..4e519f0 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);