From cbfd93eaf9f0cecf59427eb973bd95cec59ff5dc Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 7 Aug 2007 19:45:53 +0000 Subject: Fix converting UI selections into which drives should be used for partitioning (#247997). --- ChangeLog | 6 ++++++ textw/partition_text.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a53936225..fd16a5b32 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-08-07 Chris Lumens + + * textw/partition_text.py (PartitionTypeWindow.__call__): Fix + converting UI selections into which drives should be used for + partitioning (#247997). + 2007-08-06 David Cantrell * anaconda.spec: Bump version. diff --git a/textw/partition_text.py b/textw/partition_text.py index 9a4d65dca..b0b37ea8f 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -1595,7 +1595,7 @@ class PartitionTypeWindow: rc = g.run() - sel = [self.drivelist.getSelection()[0].split()[0]] + sel = map(lambda s: s.split()[0], self.drivelist.getSelection()) partmethod_ans = typebox.current() res = bb.buttonPressed(rc) -- cgit