From a3d18f2ea173d17e64c0289421d0b58966f289e1 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Thu, 15 Nov 2012 02:19:19 +0100 Subject: [PATCH] Get rid of the double newline after entering a container --- console/master/dropper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/master/dropper b/console/master/dropper index 851b062..ff0d237 100755 --- a/console/master/dropper +++ b/console/master/dropper @@ -17,7 +17,7 @@ def posix_shell(chan, ctid): tty.setcbreak(sys.stdin.fileno()) chan.settimeout(0.0) - chan.send('%s\r\n' % ctid) + chan.send('%s\n' % ctid) while True: r, w, e = select.select([chan, sys.stdin], [], [])