From 8655d810783b8681f527d0f7fb925e6f9d791381 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Thu, 26 Apr 2018 16:27:42 +0200 Subject: [PATCH] File transfer example --- Examples/Filetransfer.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Examples/Filetransfer.py b/Examples/Filetransfer.py index 9530176..c09f7cf 100644 --- a/Examples/Filetransfer.py +++ b/Examples/Filetransfer.py @@ -321,13 +321,14 @@ def print_menu(): print("\rProgress: 100.0 %"), sys.stdout.flush() print("") - print("The download completed!") + print("The download completed! Pres enter to return to the menu.") + raw_input() else: print("") - print("The download failed!") + print("The download failed! Pres enter to return to the menu.") + raw_input() - time.sleep(1) current_download = None menu_mode = "main" print_menu()