From 0313930751cc922233de4c1e0971582f2121ea16 Mon Sep 17 00:00:00 2001 From: HappyZ Date: Wed, 12 Dec 2018 21:06:26 -0600 Subject: [PATCH] add more precise instructions on mass_storage for noobs --- python_api/libInteractive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_api/libInteractive.py b/python_api/libInteractive.py index 59b7fbf..b8862aa 100644 --- a/python_api/libInteractive.py +++ b/python_api/libInteractive.py @@ -485,7 +485,7 @@ def diagnosis_restore_systemimg(dpt): dpt.info_print("Your computer shall have mounted a disk.") dpt.info_print("Please copy your `system.img` there.") try: - input("While done, please press Enter key to continue..") + input("When done, plz eject disk and press Enter to continue..") dpt.diagnosis_stop_mass_storage() except KeyboardInterrupt: dpt.err_print("Nothing happened..") @@ -525,7 +525,7 @@ def diagnosis_restore_bootimg(dpt, usetmpfp=None, bootimgfp=None): dpt.info_print("Your computer shall have mounted a disk.") dpt.info_print("Please copy your `boot.img.bak` there.") try: - input("While done, please press Enter key to continue..") + input("When done, plz eject disk and press Enter to continue..") dpt.diagnosis_stop_mass_storage() except KeyboardInterrupt: dpt.err_print("Nothing happened..")