diff options
author | Mike Fulbright <msf@redhat.com> | 2001-09-07 16:56:28 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-09-07 16:56:28 +0000 |
commit | 7db221245541f50bc9def87c7fd0e7df39c099cf (patch) | |
tree | 8307dceab48a665a4b88ed5604c06f48ffff2e0d /textw | |
parent | 65dd6bbe427cdfe842db9952e660707272114ecf (diff) | |
download | anaconda-7db221245541f50bc9def87c7fd0e7df39c099cf.tar.gz anaconda-7db221245541f50bc9def87c7fd0e7df39c099cf.tar.xz anaconda-7db221245541f50bc9def87c7fd0e7df39c099cf.zip |
fix for bug 53367
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 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)) |