From 725ceb4a1a16a155095e08344fbee8c1c4ef44b7 Mon Sep 17 00:00:00 2001 From: Graeme Humphries Date: Mon, 10 Dec 2012 15:10:05 -0800 Subject: [PATCH] Added explict notification on CLI of individual session disconnects. --- crussh.py | 1 + 1 file changed, 1 insertion(+) diff --git a/crussh.py b/crussh.py index 4c12fa4..7bdd3fe 100755 --- a/crussh.py +++ b/crussh.py @@ -178,6 +178,7 @@ class CruSSH: for host in self.Terminals.keys(): if terminal == self.Terminals[host]: self.LayoutTable.remove(self.Terminals[host]) + print("Disconnected from " + host) del self.Terminals[host] self.reflow(force=True)