diff options
author | Erik Troan <ewt@redhat.com> | 2000-05-09 15:42:40 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-05-09 15:42:40 +0000 |
commit | e55270d98a35bc0c4a4ab319f3ab2413be49cbe2 (patch) | |
tree | 3ecf67d3269af5300dc82cf7c775012257cfb253 /isys/isys.c | |
parent | e6f90c9b08b5c891ae26c3153258929efc3d1bc0 (diff) | |
download | anaconda-e55270d98a35bc0c4a4ab319f3ab2413be49cbe2.tar.gz anaconda-e55270d98a35bc0c4a4ab319f3ab2413be49cbe2.tar.xz anaconda-e55270d98a35bc0c4a4ab319f3ab2413be49cbe2.zip |
updated for new readmoduleinfo
Diffstat (limited to 'isys/isys.c')
-rw-r--r-- | isys/isys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.c b/isys/isys.c index f5a47aad6..bd26b0f0b 100644 --- a/isys/isys.c +++ b/isys/isys.c @@ -534,7 +534,7 @@ static PyObject * doReadModInfo(PyObject * s, PyObject * args) { if (!PyArg_ParseTuple(args, "s", &fn)) return NULL; - if (isysReadModuleInfo(fn, modInfoList, NULL)) { + if (isysReadModuleInfo(fn, modInfoList, MI_LOCATION_NONE, NULL)) { PyErr_SetFromErrno(PyExc_IOError); return NULL; } |