diff --git a/tsshbatch.py b/tsshbatch.py index 53aa7f3..eeb1e03 100755 --- a/tsshbatch.py +++ b/tsshbatch.py @@ -12,7 +12,7 @@ PROGNAME = "tsshbatch.py" BASENAME = PROGNAME.split(".py")[0] PROGENV = BASENAME.upper() -RCSID = "$Id: tsshbatch.py,v 1.123 2011/12/30 22:53:26 tundra Exp $" +RCSID = "$Id: tsshbatch.py,v 1.124 2011/12/30 22:57:07 tundra Exp $" VERSION = RCSID.split()[2] CPRT = "(c)" @@ -169,12 +169,12 @@ # Catch authentication problems explicitly except paramiko.AuthenticationException: - PrintReport([host, FAILURE, eNOLOGIN]) + PrintReport([host, FAILURE, eNOLOGIN], HANDLER=PrintStderr) # Everything else is some kind of connection problem except: - PrintReport([host, FAILURE, eNOCONNECT]) + PrintReport([host, FAILURE, eNOCONNECT], HANDLER=PrintStderr) ssh.close()