diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-06-14 18:23:36 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-06-14 18:37:36 -0400 |
commit | f95efb8a2b8d3880b8348064c178c67930537efe (patch) | |
tree | 6105bfb6fa6c0ed7fa651f0094512092ad69d850 | |
parent | d2bf2f399d58546df07ffa52db426ff97094983e (diff) |
I don't understand why this was ever here, seems extraneous
Our tests and fabric 2's test suites all pass with it gone, so. good enough?
-rw-r--r-- | paramiko/channel.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/paramiko/channel.py b/paramiko/channel.py index 41b18958..faf35763 100644 --- a/paramiko/channel.py +++ b/paramiko/channel.py @@ -1348,9 +1348,6 @@ class ChannelFile(BufferedFile): class ChannelStderrFile(ChannelFile): - def __init__(self, channel, mode="r", bufsize=-1): - ChannelFile.__init__(self, channel, mode, bufsize) - def _read(self, size): return self.channel.recv_stderr(size) |