diff options
Diffstat (limited to 'python/rpmmodule.c')
-rw-r--r-- | python/rpmmodule.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/rpmmodule.c b/python/rpmmodule.c index 8db0d140a..d7238f66d 100644 --- a/python/rpmmodule.c +++ b/python/rpmmodule.c @@ -650,6 +650,8 @@ static PyObject * hdrLoad(PyObject * self, PyObject * args) { PyErr_SetString(pyrpmError, "bad header"); return NULL; } + compressFilelist (hdr); + providePackageNVR (hdr); h = (hdrObject *) PyObject_NEW(PyObject, &hdrType); h->h = hdr; |