summaryrefslogtreecommitdiffstats
path: root/textw
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 /textw
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 'textw')
-rw-r--r--textw/language_text.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/textw/language_text.py b/textw/language_text.py
index 44615fa97..a929cac99 100644
--- a/textw/language_text.py
+++ b/textw/language_text.py
@@ -84,23 +84,6 @@ class LanguageWindow:
instLanguage.setRuntimeLanguage(choice)
- if not flags.serial:
- map = instLanguage.getFontMap(choice)
- font = instLanguage.getFontFile(choice)
- if map != "None":
- if os.access("/bin/consolechars", os.X_OK):
- iutil.execWithRedirect ("/bin/consolechars",
- ["/bin/consolechars", "-f", font, "-m", map])
- else:
- try:
- isys.loadFont(map)
- except SystemError, (errno, msg):
- log("Could not load font %s: %s" % (font, msg))
- elif os.access("/bin/consolechars", os.X_OK):
- # test
- iutil.execWithRedirect ("/bin/consolechars",
- ["/bin/consolechars", "-d", "-m", "iso01"])
-
textInterface.drawFrame()
return INSTALL_OK