summaryrefslogtreecommitdiff
path: root/paramiko/channel.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2019-06-14 18:23:36 -0400
committerJeff Forcier <jeff@bitprophet.org>2019-06-14 18:37:36 -0400
commitf95efb8a2b8d3880b8348064c178c67930537efe (patch)
tree6105bfb6fa6c0ed7fa651f0094512092ad69d850 /paramiko/channel.py
parentd2bf2f399d58546df07ffa52db426ff97094983e (diff)
downloadparamiko-f95efb8a2b8d3880b8348064c178c67930537efe.tar.gz
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?
Diffstat (limited to 'paramiko/channel.py')
-rw-r--r--paramiko/channel.py3
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)