summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-12-21 10:54:25 -0500
committerChris Lumens <clumens@redhat.com>2010-02-04 14:07:30 -0500
commit2c4932e109f2f913d5efb9f906348ffaacd6b0ee (patch)
treeec54ace8deaeb96ae3bd0ee4bc4ee8ab2b4dc8c4 /gui.py
parent0ac1dd8055c7d146eb69efe4da3dcfd6ea844180 (diff)
downloadanaconda-2c4932e109f2f913d5efb9f906348ffaacd6b0ee.tar.gz
anaconda-2c4932e109f2f913d5efb9f906348ffaacd6b0ee.tar.xz
anaconda-2c4932e109f2f913d5efb9f906348ffaacd6b0ee.zip
Move keyboard to the Anaconda object.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index afb04db7b..700a0ca7a 100755
--- a/gui.py
+++ b/gui.py
@@ -1254,8 +1254,8 @@ class InstallInterface:
def run(self, anaconda):
self.anaconda = anaconda
- if anaconda.id.keyboard and not flags.livecdInstall:
- anaconda.id.keyboard.activate()
+ if anaconda.keyboard and not flags.livecdInstall:
+ anaconda.keyboard.activate()
self.icw = InstallControlWindow (self.anaconda)
self.icw.run (self.runres)