diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-11 22:20:20 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-11 22:20:20 +0000 |
commit | 5d60229e093e059d94257e45f199420435ffbb2b (patch) | |
tree | ae76679e6110b6bac3e896f1b9d642ce33aacfaa /textw | |
parent | dc97c5561bf24a9eb2bf7083771ace6146e799a0 (diff) | |
download | anaconda-5d60229e093e059d94257e45f199420435ffbb2b.tar.gz anaconda-5d60229e093e059d94257e45f199420435ffbb2b.tar.xz anaconda-5d60229e093e059d94257e45f199420435ffbb2b.zip |
make sure drivelist is set
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partition_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index 4449413b8..615a168f0 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -516,6 +516,7 @@ class PartitionWindow: row = row + 1 + self.drivelist = None if origrequest.type == REQUEST_NEW: subgrid = Grid(2, 1) (fstype, fsgrid) = self.makeFsList(origrequest) @@ -538,7 +539,6 @@ class PartitionWindow: poplevel.add(allsize, 0, row, (0,1,0,0), growx=1) else: # explicit add via cylinder - self.drivelist = None poplevel.add(subgrid, 0, row, (0,1,0,0)) row = row + 1 |