diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2011-03-09 15:28:48 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2011-03-09 15:28:48 +0200 |
commit | 32ffdfae8fa340eeaed898af68bdcd24e6fcb28b (patch) | |
tree | d6ca5cf1458c8fdccbd20d106f082f300522ecf2 /python | |
parent | f104306f5928bcea09f0ecc622243df9c42fc466 (diff) | |
download | rpm-32ffdfae8fa340eeaed898af68bdcd24e6fcb28b.tar.gz rpm-32ffdfae8fa340eeaed898af68bdcd24e6fcb28b.tar.bz2 rpm-32ffdfae8fa340eeaed898af68bdcd24e6fcb28b.zip |
Don't bother with the callback die-die-die error translation
Diffstat (limited to 'python')
-rw-r--r-- | python/rpmts-py.c | 2 |
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); |