summaryrefslogtreecommitdiffstats
path: root/textw/bootloader_text.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-07-18 03:12:05 +0000
committerJeremy Katz <katzj@redhat.com>2002-07-18 03:12:05 +0000
commit3eb920151006bb761b5378bb2f8384ee265da08c (patch)
tree7fd700a068cc17205a95d8dd3681a0642dfba89f /textw/bootloader_text.py
parent12edeb7d65d78b63282e343d8537081cdd519406 (diff)
put fields in same order as gui. should be able to fit lvs now (#67877)
Diffstat (limited to 'textw/bootloader_text.py')
-rw-r--r--textw/bootloader_text.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/textw/bootloader_text.py b/textw/bootloader_text.py
index a0d285839..83939153e 100644
--- a/textw/bootloader_text.py
+++ b/textw/bootloader_text.py
@@ -256,7 +256,7 @@ class BootloaderImagesWindow:
if not label:
label = ""
- return " %-12s %-7s %-25s" % ( "/dev/" + device, default, label)
+ return " %-4s %-25s %-25s" % ( default, label, "/dev/" + device)
def __call__(self, screen, dispatch, bl, fsset, diskSet):
if dispatch.stepInSkipList("instbootloader"): return INSTALL_NOOP
@@ -271,8 +271,8 @@ class BootloaderImagesWindow:
self.bl = bl
- listboxLabel = Label( "%-12s %-7s %-25s" %
- ( _("Device"), _("Default"), _("Boot label")))
+ listboxLabel = Label( "%-7s %-25s %-12s" %
+ ( _("Default"), _("Boot label"), _("Device")))
listbox = Listbox(5, scroll = 1, returnExit = 1)
sortedKeys = images.keys()