summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-08-07 19:45:53 +0000
committerChris Lumens <clumens@redhat.com>2007-08-07 19:45:53 +0000
commitcbfd93eaf9f0cecf59427eb973bd95cec59ff5dc (patch)
treec76a595e51419a2e2d368eae78e69651027daf08 /textw
parente2ed6539e89e3af1b2d39442803d8077c08ab14b (diff)
downloadanaconda-cbfd93eaf9f0cecf59427eb973bd95cec59ff5dc.tar.gz
anaconda-cbfd93eaf9f0cecf59427eb973bd95cec59ff5dc.tar.xz
anaconda-cbfd93eaf9f0cecf59427eb973bd95cec59ff5dc.zip
Fix converting UI selections into which drives should be used for partitioning
(#247997).
Diffstat (limited to 'textw')
-rw-r--r--textw/partition_text.py2
1 files changed, 1 insertions, 1 deletions
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)