diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-08-14 19:08:09 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-08-14 19:08:09 +0000 |
commit | 73b9ea6895b8046a15c50bbf0c96c94c6c1e56d7 (patch) | |
tree | 4690a42db74df73d7bed579c7c19eb4efa6682ac /textw | |
parent | bb854a2111fec45950593e5409bd9fa6c77f4e9c (diff) | |
download | anaconda-73b9ea6895b8046a15c50bbf0c96c94c6c1e56d7.tar.gz anaconda-73b9ea6895b8046a15c50bbf0c96c94c6c1e56d7.tar.xz anaconda-73b9ea6895b8046a15c50bbf0c96c94c6c1e56d7.zip |
don't make the label None, that's silly
Diffstat (limited to 'textw')
-rw-r--r-- | textw/bootloader_text.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/textw/bootloader_text.py b/textw/bootloader_text.py index b5f60a5e2..578e8c350 100644 --- a/textw/bootloader_text.py +++ b/textw/bootloader_text.py @@ -245,6 +245,9 @@ class BootloaderImagesWindow: default = '*' else: default = "" + + if not label: + label = "" return "%-10s %-25s %-7s %-10s" % ( "/dev/" + device, type, default, label) |