summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-02-23 13:14:27 -0600
committerDavid Lehman <dlehman@redhat.com>2009-02-23 13:14:27 -0600
commitb2dedb483bd9514cce023c284463d18fc0f7b612 (patch)
treeef1288cfe1edb18b273f24385a03f91dcb584c5a /gui.py
parente1a7fe9887886044b07587b3ec2caa2ff53ebfb2 (diff)
downloadanaconda-b2dedb483bd9514cce023c284463d18fc0f7b612.tar.gz
anaconda-b2dedb483bd9514cce023c284463d18fc0f7b612.tar.xz
anaconda-b2dedb483bd9514cce023c284463d18fc0f7b612.zip
Update UI code to use new storage module.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/gui.py b/gui.py
index 14ef0450e..d224fbd0b 100755
--- a/gui.py
+++ b/gui.py
@@ -752,7 +752,7 @@ class SaveExceptionWindow:
elif len(dests) > 0:
for d in dests:
iter = store.append(None)
- store[iter] = ("/dev/%s" % d[0], "/dev/%s - %s" % (d[0], d[1]))
+ store[iter] = (d[0], "%s - %s" % (d[0], d[1]))
self.diskCombo.set_model(store)
self.diskCombo.set_active(0)
@@ -1267,10 +1267,6 @@ class InstallInterface:
if anaconda.id.keyboard and not anaconda.id.x_already_set:
anaconda.id.keyboard.activate()
- anaconda.id.fsset.registerMessageWindow(self.messageWindow)
- anaconda.id.fsset.registerProgressWindow(self.progressWindow)
- anaconda.id.fsset.registerWaitWindow(self.waitWindow)
-
self.icw = InstallControlWindow (self.anaconda)
self.icw.run (self.runres)