diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-04-17 03:21:34 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-04-17 03:21:34 +0200 |
| commit | 13dda5843f79a02f2c6dadc6cfd99ca62679dde3 (patch) | |
| tree | 4ea637b66c06ba0f67e9db20aa03e657efacd01c | |
| parent | 37c698413ef6f433f03589a4f52076893030a9e5 (diff) | |
menuconfig: Add missing 'return' in _select_selected_choice_sym()
Won't affect behavior, but it was intended.
| -rwxr-xr-x | menuconfig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/menuconfig.py b/menuconfig.py index 1a1e052..dc8372e 100755 --- a/menuconfig.py +++ b/menuconfig.py @@ -1096,6 +1096,7 @@ def _select_selected_choice_sym(): if node in _shown: _sel_node_i = _shown.index(node) _center_vertically() + return def _jump_to(node): |
