Revision d0296fee src/ssh.py

b/src/ssh.py
80 80
                    self._inBuf += data
81 81
                    (before, _, after) = self._inBuf.partition(MSG_DELIM)
82 82
                    if after:
83
                         # we don't want this thread to ground to a halt
84
                         # because of an error dispatching one reply...
85
                        try: self.dispatch('reply', before)
86
                        except: pass
83
                        self.dispatch('reply', before)
87 84
                        self._inBuf = after
88 85
                else:
89 86
                    self.dispatch('error', self._inBuf)

Also available in: Unified diff