summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-03-20 15:08:04 +0000
committerChris Lumens <clumens@redhat.com>2007-03-20 15:08:04 +0000
commit5672594682d2e138beb2b9f9055851aadddd0ef6 (patch)
tree4ce84914a9727e2d4beb13b615cfdf7b31913363 /iw
parente1d2a996e0f80aefd8b87e6834af3495befdbed9 (diff)
downloadanaconda-5672594682d2e138beb2b9f9055851aadddd0ef6.tar.gz
anaconda-5672594682d2e138beb2b9f9055851aadddd0ef6.tar.xz
anaconda-5672594682d2e138beb2b9f9055851aadddd0ef6.zip
False and 0 are not the same. Fixes no drives being selected by default on the
autopart screen.
Diffstat (limited to 'iw')
-rw-r--r--iw/partition_ui_helpers_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/partition_ui_helpers_gui.py b/iw/partition_ui_helpers_gui.py
index a03c49f7d..ae9a1a23a 100644
--- a/iw/partition_ui_helpers_gui.py
+++ b/iw/partition_ui_helpers_gui.py
@@ -127,7 +127,7 @@ def createAllowedDrivesStore(disks, reqdrives, drivelist, selectDrives=True,
drives.sort()
for drive in drives:
size = getDeviceSizeMB(disks[drive].dev)
- selected = False
+ selected = 0
if selectDrives:
if reqdrives: