diff options
| -rwxr-xr-x | menuconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/menuconfig.py b/menuconfig.py index 3fb1ebc..9bd629f 100755 --- a/menuconfig.py +++ b/menuconfig.py @@ -1610,7 +1610,7 @@ def _draw_jump_to_dialog(edit_box, matches_win, bot_sep_win, help_win, sym = matches[i].item - sym_str = "{}(={})".format(sym.name, sym.str_value) + sym_str = '{}(="{}")'.format(sym.name, sym.str_value) if matches[i].prompt: sym_str += ' "{}"'.format(matches[i].prompt[0]) |
