summaryrefslogtreecommitdiffstats
path: root/textw/partition_text.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-03-18 11:16:14 -0400
committerChris Lumens <clumens@redhat.com>2009-03-18 11:33:25 -0400
commit4f797e93d54bded4130336885addd4f04ab39d3d (patch)
treeb86de15d9bc4b17352f84624165bc2a4b8f6a176 /textw/partition_text.py
parent2b05419b71b0380f6b4b9c088ae27f10963ff4fd (diff)
downloadanaconda-4f797e93d54bded4130336885addd4f04ab39d3d.tar.gz
anaconda-4f797e93d54bded4130336885addd4f04ab39d3d.tar.xz
anaconda-4f797e93d54bded4130336885addd4f04ab39d3d.zip
Don't try to fit the whole StorageDevice.__str__ output into the UI (#490406).
Diffstat (limited to 'textw/partition_text.py')
-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 41e1db5cc..d74c7d491 100644
--- a/textw/partition_text.py
+++ b/textw/partition_text.py
@@ -106,7 +106,7 @@ class PartitionTypeWindow:
selected = 0
sizestr = "%8.0f MB" % (disk.size,)
- diskdesc = "%6s %s (%s)" % (disk, sizestr, model[:24],)
+ diskdesc = "%6s %s (%s)" % (disk.path, sizestr, model[:24],)
drivelist.append(diskdesc, selected = selected)