diff options
author | Mike Fulbright <msf@redhat.com> | 2002-05-23 20:15:31 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-05-23 20:15:31 +0000 |
commit | b15240320485520b6be80684a39976e5062203ab (patch) | |
tree | 181f9ba3c7576e92f1139633ca392520aabb17fb | |
parent | e08c5d291cab413f17c1ff523cfa1dd457b93cad (diff) | |
download | anaconda-b15240320485520b6be80684a39976e5062203ab.tar.gz anaconda-b15240320485520b6be80684a39976e5062203ab.tar.xz anaconda-b15240320485520b6be80684a39976e5062203ab.zip |
more rhpl migration stuff
-rw-r--r-- | textw/keyboard_text.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/textw/keyboard_text.py b/textw/keyboard_text.py index 0acd8d01c..5a0f9849c 100644 --- a/textw/keyboard_text.py +++ b/textw/keyboard_text.py @@ -15,10 +15,11 @@ import isys import iutil from snack import * from constants_text import * -from rhpl.translate import _ -from log import * from flags import flags +from rhpl.log import log +from rhpl.translate import _ + class KeyboardWindow: def __call__(self, screen, instLang, kbd, xconfig): if flags.serial: @@ -49,6 +50,6 @@ class KeyboardWindow: try: isys.loadKeymap(keyboards[choice]) except SystemError, (errno, msg): - log("Could not install keymap %s: %s" % (keyboards[choice], msg)) + log.log("Could not install keymap %s: %s" % (keyboards[choice], msg)) return INSTALL_OK |