From 1c2c4ae83e78d3450e313aba53628497643adfb8 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Sat, 25 Aug 2018 02:06:58 +0200 Subject: oldconfig: Fix help display command for choices '?' should display the help, like for symbols, not '??'. Oversight when the command was changed. --- oldconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'oldconfig.py') diff --git a/oldconfig.py b/oldconfig.py index aeb6666..2c058bd 100755 --- a/oldconfig.py +++ b/oldconfig.py @@ -262,7 +262,7 @@ def do_oldconfig_for_node(node): sel_index = input("choice[1-{}]: ".format(len(options))) - if sel_index == "??": + if sel_index == "?": print_help(node) continue -- cgit v1.2.3