+
+ try:
+ clean_quit = menuconfig(lcfg_env)
+ except TerminalSizeCheckFailed as e:
+ least = e.args[0]
+ current = e.args[1]
+ print(
+ f"Your terminal size: {current} is less than minimum requirement of {least}.\n"
+ "menuconfig will not function properly, switch to prompt based.\n")
+
+ shell = InteractiveShell(lcfg_env)
+ clean_quit = shell.render_loop()