summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-09-07 16:56:28 +0000
committerMike Fulbright <msf@redhat.com>2001-09-07 16:56:28 +0000
commit7db221245541f50bc9def87c7fd0e7df39c099cf (patch)
tree8307dceab48a665a4b88ed5604c06f48ffff2e0d /textw
parent65dd6bbe427cdfe842db9952e660707272114ecf (diff)
downloadanaconda-7db221245541f50bc9def87c7fd0e7df39c099cf.tar.gz
anaconda-7db221245541f50bc9def87c7fd0e7df39c099cf.tar.xz
anaconda-7db221245541f50bc9def87c7fd0e7df39c099cf.zip
fix for bug 53367
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 690dbf0a1..52bea4ec5 100644
--- a/textw/partition_text.py
+++ b/textw/partition_text.py
@@ -421,7 +421,7 @@ class PartitionWindow:
subgrid.setField(label, 1, 0)
entry = Entry(3)
if request.raidspares:
- entry.set(request.raidspares)
+ entry.set(str(request.raidspares))
else:
entry.set("0")
subgrid.setField(entry, 0, 0, (0,0,1,0))