diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-17 18:15:24 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-17 18:15:24 +0000 |
commit | d96405e94014960e53f692ab6cc89c478205b18b (patch) | |
tree | 7a81c8c1fd058d950f751435a3e4e11a923d59c5 /rpmmodule | |
parent | a78357ffcb2b1f479465eb962073977ba31a2ad0 (diff) | |
download | anaconda-d96405e94014960e53f692ab6cc89c478205b18b.tar.gz anaconda-d96405e94014960e53f692ab6cc89c478205b18b.tar.xz anaconda-d96405e94014960e53f692ab6cc89c478205b18b.zip |
fix for rpm stuff in %post script
Diffstat (limited to 'rpmmodule')
-rw-r--r-- | rpmmodule/rpmmodule.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rpmmodule/rpmmodule.c b/rpmmodule/rpmmodule.c index 44940c068..640b72eb3 100644 --- a/rpmmodule/rpmmodule.c +++ b/rpmmodule/rpmmodule.c @@ -1393,7 +1393,10 @@ static PyObject * rpmtransRun(rpmtransObject * s, PyObject * args) { list = PyList_New(0); for (i = 0; i < probs->numProblems; i++) { - prob = Py_BuildValue("s", rpmProblemString(probs->probs[i])); + prob = Py_BuildValue("s(isi)", rpmProblemString(probs->probs[i]), + probs->probs[i].type, + probs->probs[i].str1, + probs->probs[i].ulong1); PyList_Append(list, prob); Py_DECREF(prob); } |