summaryrefslogtreecommitdiffstats
path: root/isys
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
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')
-rw-r--r--isys/isys.c2
-rw-r--r--isys/isys.py4
2 files changed, 3 insertions, 3 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) {
diff --git a/isys/isys.py b/isys/isys.py
index 176b572ab..f6450681a 100644
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -224,8 +224,8 @@ def swapon (path):
def fbconProbe(path):
return _isys.fbconprobe (path)
-def loadFont(font):
- return _isys.loadFont (font)
+def loadFont():
+ return _isys.loadFont ()
def loadKeymap(keymap):
return _isys.loadKeymap (keymap)