diff options
author | pnfisher <pnfisher> | 1999-09-15 00:10:22 +0000 |
---|---|---|
committer | pnfisher <pnfisher> | 1999-09-15 00:10:22 +0000 |
commit | af298fe904c4016224b55646b8d7732689fc8552 (patch) | |
tree | 7621a30c3c969503e32dab9580a5d6604781add5 /iw/keyboard.py | |
parent | 2ecc18acf761ee5e2c199ad59ff642f238899fd8 (diff) | |
download | anaconda-af298fe904c4016224b55646b8d7732689fc8552.tar.gz anaconda-af298fe904c4016224b55646b8d7732689fc8552.tar.xz anaconda-af298fe904c4016224b55646b8d7732689fc8552.zip |
Make compile.
Diffstat (limited to 'iw/keyboard.py')
-rw-r--r-- | iw/keyboard.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/iw/keyboard.py b/iw/keyboard.py index 4c0ef98e5..4ae52a250 100644 --- a/iw/keyboard.py +++ b/iw/keyboard.py @@ -1,6 +1,7 @@ from gtk import * from iw import * import xkb +import string from gui import _ class KeyboardWindow (InstallWindow): @@ -13,7 +14,7 @@ class KeyboardWindow (InstallWindow): ics.setNextEnabled (TRUE) self.kb = xkb.XKB () self.rules = self.kb.getRules () - rules = _xkb.get_rulesbase () + rules = self.kb.getRulesBase () self.rulesbase = rules[string.rfind (rules, "/")+1:] self.model = "pc101" self.layout = "en_US" |