diff options
author | Chris Lumens <clumens@redhat.com> | 2006-09-28 21:00:41 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-09-28 21:00:41 +0000 |
commit | 84b9fb1579638bfb7ac39112195fd99ef45b82c2 (patch) | |
tree | 70f8e8b7efbf95db7f08bf046326a8720760d54d /textw | |
parent | e2eb4a5773685837b793ca7fbb6e0754a6cbfbf7 (diff) | |
download | anaconda-84b9fb1579638bfb7ac39112195fd99ef45b82c2.tar.gz anaconda-84b9fb1579638bfb7ac39112195fd99ef45b82c2.tar.xz anaconda-84b9fb1579638bfb7ac39112195fd99ef45b82c2.zip |
Don't check the updates image source by default in the partitioning UI.
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partition_text.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index bdb302148..9b7b805e0 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -1569,7 +1569,10 @@ class PartitionTypeWindow: for disk in disks: if disk in cleardrives: - selected = 1 + if disk != self.anaconda.updateSrc: + selected = 1 + else: + selected = 0 else: selected = 0 self.drivelist.append(disk, selected = selected) |