From d87fd990047ed37ea9df6009eeb3e1ba228cdcfc Mon Sep 17 00:00:00 2001 From: Naim2000 Date: Thu, 20 Jun 2024 22:46:36 -0500 Subject: [PATCH] print root on main MSET9 menu --- MSET9_installer_script/mset9.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MSET9_installer_script/mset9.py b/MSET9_installer_script/mset9.py index 0f4022e..1647410 100644 --- a/MSET9_installer_script/mset9.py +++ b/MSET9_installer_script/mset9.py @@ -559,7 +559,7 @@ else: for f in ["SafeB9S.bin", "b9", "boot.firm", "boot.3dsx", "boot9strap/", "mset9.py", "mset9.bat", "mset9.command", "_INSTRUCTIONS.txt", "errors.txt"]: try: shutil.move(os.path.join(scriptroot, f), os.path.join(root, f)) - except FileNotFoundError: + except: pass # The sanity checks will deal with that. I just don't want the exception to terminate the script. with open(os.path.join(scriptroot, "Note from MSET9.txt"), "w") as f: @@ -1012,6 +1012,7 @@ print(f"MSET9 {VERSION} SETUP by zoogie, Aven and DannyAAM") print(f"Using {consoleNames[consoleIndex]}") print() print(f"Current MSET9 state: {haxStates[haxState]}") +fs.print_root(); print("\n-- Please type in a number then hit return --\n")