From 1a9f1965d3a4d96d775683256b6e481dbe5f6ffc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Borgstr=C3=B6m?= Date: Tue, 16 Nov 2010 22:55:51 +0100 Subject: [PATCH] More tolerant remote side stderr output handling --- darc/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/darc/remote.py b/darc/remote.py index e742e98f5..5a7911b76 100644 --- a/darc/remote.py +++ b/darc/remote.py @@ -85,7 +85,7 @@ class RemoteStore(object): r, w, e = select.select([self.channel], [], [self.channel], 10) if r: if self.channel.recv_stderr_ready(): - raise Exception(self.channel.recv_stderr(BUFSIZE)) + print >> sys.stderr, self.channel.recv_stderr(BUFSIZE) elif self.channel.recv_ready(): self.unpacker.feed(self.channel.recv(BUFSIZE)) for type, msgid, error, res in self.unpacker: