diff options
author | Chris Lumens <clumens@redhat.com> | 2005-11-03 19:33:34 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2005-11-03 19:33:34 +0000 |
commit | 0ea47539d67de4934f0fe4d8627315fcf8d84319 (patch) | |
tree | bc02e11f35023a3565878504e57d46cc75d5328d /autopart.py | |
parent | d73ff14354d7bc3bfad20fb8c756ac1caf1791ef (diff) | |
download | anaconda-0ea47539d67de4934f0fe4d8627315fcf8d84319.tar.gz anaconda-0ea47539d67de4934f0fe4d8627315fcf8d84319.tar.xz anaconda-0ea47539d67de4934f0fe4d8627315fcf8d84319.zip |
Whoops, that one was inverted.
Diffstat (limited to 'autopart.py')
-rw-r--r-- | autopart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autopart.py b/autopart.py index bc5bcdb9e..dab40c8b5 100644 --- a/autopart.py +++ b/autopart.py @@ -1236,7 +1236,7 @@ def doAutoPartition(dir, diskset, partitions, intf, instClass, dispatch): # XXX clearpartdrives is overloaded as drives we want to use for linux drives = [] initial_free = findFreespace(diskset) - if not partitions.autoClearPartDrives: + if partitions.autoClearPartDrives: for drive in partitions.autoClearPartDrives: disk = diskset.disks[drive] |