From 22d2c3610ca49acd50920915149d82d7edcc15fe Mon Sep 17 00:00:00 2001 From: Vasile Popescu Date: Wed, 23 May 2018 23:52:31 +0200 Subject: [PATCH] Change the first message tty_sender prints when starting --- tty-sender/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tty-sender/main.go b/tty-sender/main.go index 412e3a4..704c343 100644 --- a/tty-sender/main.go +++ b/tty-sender/main.go @@ -74,7 +74,7 @@ func main() { // Display the session information to the user, before showing any output from the command. // Wait until the user presses Enter - fmt.Printf("Web terminal: %s. Press Enter to continue. \n\n\r", reply.URLWebReadWrite) + fmt.Printf("Web terminal: %s\n\n\r", reply.URLWebReadWrite) //TODO: if the user on the remote side presses keys, and so messages are sent back to the // tty_sender, they will be delivered all at once, after Enter has been pressed. Fix that.