Ryan Barry has uploaded a new change for review. Change subject: Remove "press 'q' to quit" prompt from support and diagnostics pages ......................................................................
Remove "press 'q' to quit" prompt from support and diagnostics pages Spuriously prompts to press 'q' to quit from when we used `less` to view output. Change to prompt for <ESC> instead. Change-Id: Ic0644b7bf0c37d3dc9157ef2b86d817e48b2ca65 Signed-off-by: Ryan Barry <[email protected]> --- M src/ovirt/node/setup/core/diagnostics_page.py M src/ovirt/node/setup/core/support_page.py 2 files changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/35/15535/1 diff --git a/src/ovirt/node/setup/core/diagnostics_page.py b/src/ovirt/node/setup/core/diagnostics_page.py index 2a00694..4fcd6b9 100644 --- a/src/ovirt/node/setup/core/diagnostics_page.py +++ b/src/ovirt/node/setup/core/diagnostics_page.py @@ -50,7 +50,7 @@ """ ws = [ui.Header("diagnostic._header", "Diagnostic Utilities"), ui.Label("diagnostic.info", "Select one of the tools below. \n" + - "Press 'q' to quit when viewing output"), + "Press '<ESC>' to quit when viewing output"), ui.Divider("diagnostic.divider"), ui.Table("diagnostic.tools", "", "Available diagnostics", self.__diagnostics(), height=min( diff --git a/src/ovirt/node/setup/core/support_page.py b/src/ovirt/node/setup/core/support_page.py index 7a9f5a8..d847b1f 100644 --- a/src/ovirt/node/setup/core/support_page.py +++ b/src/ovirt/node/setup/core/support_page.py @@ -46,7 +46,7 @@ def ui_content(self): ws = [ui.Header("header[0]", "Support Info"), ui.Label("support.info", "Select one of the logfiles below. \n" + - "Press 'q' to quit when viewing a logfile."), + "Press '<ESC>' to quit when viewing a logfile."), ui.Divider("divider[0]"), ui.Table("support.logfile", "", "Available Logfiles", self.__debugfiles_to_offer()), -- To view, visit http://gerrit.ovirt.org/15535 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ic0644b7bf0c37d3dc9157ef2b86d817e48b2ca65 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-node Gerrit-Branch: master Gerrit-Owner: Ryan Barry <[email protected]> _______________________________________________ node-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/node-patches
