summaryrefslogtreecommitdiffstats
path: root/pyanaconda
diff options
context:
space:
mode:
authorVratislav Podzimek <vpodzime@redhat.com>2011-09-27 15:47:43 +0200
committerVratislav Podzimek <vpodzime@redhat.com>2011-10-06 11:49:47 +0200
commit315b26409d777a1ca8e0154103ce450fd9c5c61f (patch)
tree290416f4d1fc8c1ef5e897d8f765222833212e7b /pyanaconda
parentb3394593e521ffd1dc051e7ff330e99af903d420 (diff)
downloadanaconda-315b26409d777a1ca8e0154103ce450fd9c5c61f.tar.gz
anaconda-315b26409d777a1ca8e0154103ce450fd9c5c61f.tar.xz
anaconda-315b26409d777a1ca8e0154103ce450fd9c5c61f.zip
remove argument ROOT_PATH from getDefaultKeyboard() calls (removed from method with
3e8d08cac6aa89f001c5b32dba251a62a45ed7f4)
Diffstat (limited to 'pyanaconda')
-rw-r--r--pyanaconda/iw/kbd_gui.py2
-rw-r--r--pyanaconda/textw/keyboard_text.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pyanaconda/iw/kbd_gui.py b/pyanaconda/iw/kbd_gui.py
index 84fd3663a..a73588d3e 100644
--- a/pyanaconda/iw/kbd_gui.py
+++ b/pyanaconda/iw/kbd_gui.py
@@ -37,7 +37,7 @@ class KeyboardWindow(InstallWindow, installKeyboardWindow):
installKeyboardWindow.getNext(self)
def getScreen(self, anaconda):
- default = anaconda.instLanguage.getDefaultKeyboard(ROOT_PATH)
+ default = anaconda.instLanguage.getDefaultKeyboard()
anaconda.keyboard.set(default)
vbox = installKeyboardWindow.getScreen(self, default, anaconda.keyboard)
self.modelView.connect("select-cursor-row", lambda widget, vbox=vbox: self.ics.setGrabNext(1))
diff --git a/pyanaconda/textw/keyboard_text.py b/pyanaconda/textw/keyboard_text.py
index c30e18413..9e0a32b95 100644
--- a/pyanaconda/textw/keyboard_text.py
+++ b/pyanaconda/textw/keyboard_text.py
@@ -39,7 +39,7 @@ class KeyboardWindow:
if anaconda.keyboard.beenset:
default = anaconda.keyboard.get ()
else:
- default = anaconda.instLanguage.getDefaultKeyboard(ROOT_PATH)
+ default = anaconda.instLanguage.getDefaultKeyboard()
if default not in keyboards:
default = 'us'