From 89444bc4bc452e17a8caca6f9dbfef04873802fe Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Tue, 4 May 2021 00:03:49 -0600 Subject: [PATCH] Fix input handling --- Resources/CliMenu.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Resources/CliMenu.py b/Resources/CliMenu.py index 19bd04e18..c7c010564 100644 --- a/Resources/CliMenu.py +++ b/Resources/CliMenu.py @@ -390,7 +390,9 @@ Custom names will report as follows: Currently only offers 1.5TB bundles """) change_menu = input("Download more RAM?(y/n): ") - if change_menu == "1": + if change_menu == "y": self.constants.download_ram = True + elif change_menu == "n": + self.constants.download_ram = False else: print("Invalid option")