diff options
author | Erik Troan <ewt@redhat.com> | 2000-05-03 22:50:05 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-05-03 22:50:05 +0000 |
commit | 32119eac10f42c5b192af5e9d659c006d5706fe9 (patch) | |
tree | eda94c2c5c603518c94ff892dfa1edc8e5e59aeb /textw | |
parent | f54fd8c63fdfa6dc13f024764f9e2b4b07add423 (diff) | |
download | anaconda-32119eac10f42c5b192af5e9d659c006d5706fe9.tar.gz anaconda-32119eac10f42c5b192af5e9d659c006d5706fe9.tar.xz anaconda-32119eac10f42c5b192af5e9d659c006d5706fe9.zip |
put help tag in correct place
Diffstat (limited to 'textw')
-rw-r--r-- | textw/lilo_text.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textw/lilo_text.py b/textw/lilo_text.py index b82235992..ee4d0b885 100644 --- a/textw/lilo_text.py +++ b/textw/lilo_text.py @@ -28,9 +28,9 @@ class LiloAppendWindow: entry.set(todo.lilo.getAppend()) buttons = ButtonBar(screen, [(_("OK"), "ok"), (_("Skip"), "skip"), - (_("Back"), "back") ], help = "kernelopts" ) + (_("Back"), "back") ] ) - grid = GridForm(screen, _("LILO Configuration"), 1, 4) + grid = GridForm(screen, _("LILO Configuration"), "kernelopts", 1, 4) grid.add(t, 0, 0) grid.add(cb, 0, 1, padding = (0, 1, 0, 1)) grid.add(entry, 0, 2, padding = (0, 0, 0, 1)) |