summaryrefslogtreecommitdiffstats
path: root/isys/isys.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-02-25 21:26:20 +0000
committerJeremy Katz <katzj@redhat.com>2003-02-25 21:26:20 +0000
commit1cbe671a0c4fe9b12fe788f2a863e6bc4e965d76 (patch)
tree19642e4f3caff137717fff12d2c424c7eb4a4d8b /isys/isys.c
parent3fd46cb82cf6fca693492be6e469f0744c2e7b83 (diff)
downloadanaconda-1cbe671a0c4fe9b12fe788f2a863e6bc4e965d76.tar.gz
anaconda-1cbe671a0c4fe9b12fe788f2a863e6bc4e965d76.tar.xz
anaconda-1cbe671a0c4fe9b12fe788f2a863e6bc4e965d76.zip
remove map from the lang-table. we don't ever use it anymore during the
install and isys.loadFont was just throwing out the argument (#84275)
Diffstat (limited to 'isys/isys.c')
-rw-r--r--isys/isys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.c b/isys/isys.c
index 53098741b..02ffe0d45 100644
--- a/isys/isys.c
+++ b/isys/isys.c
@@ -980,7 +980,7 @@ static PyObject * doLoadFont (PyObject * s, PyObject * args) {
char * font;
int ret;
- if (!PyArg_ParseTuple(args, "s", &font)) return NULL;
+ if (!PyArg_ParseTuple(args, "")) return NULL;
ret = isysLoadFont ();
if (ret) {