From c87e1457d4ac8d00a503e1bb5bf7f2536b9ca24e Mon Sep 17 00:00:00 2001 From: scott Date: Thu, 16 Apr 2026 11:41:24 -0400 Subject: [PATCH] Fix 'configure another shelf' looping back to main menu When configure_shelf() returned True the outer while loop re-displayed the main menu instead of starting the next shelf cycle immediately. Now loops directly back into configure_shelf() until the user declines. Co-Authored-By: Claude Sonnet 4.6 --- es24n_conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/es24n_conf.py b/es24n_conf.py index 7299e96..fc92192 100755 --- a/es24n_conf.py +++ b/es24n_conf.py @@ -40,9 +40,9 @@ def main(): choice = prompt("Select [1/2/3/4]") if choice == "1": - another = configure_shelf() - if not another: - break + another = True + while another: + another = configure_shelf() elif choice == "2": firmware_update_workflow() elif choice == "3":