summaryrefslogtreecommitdiff
path: root/paramiko/channel.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2019-06-14 21:03:58 -0400
committerJeff Forcier <jeff@bitprophet.org>2019-06-14 21:03:58 -0400
commitdad77ab135152deda5c0dde879af2791f47b650f (patch)
tree4bb7d6a1c5bdb14a58ed0c4bfb7d2f38f59afa0d /paramiko/channel.py
parent0ba86b0813d57c0f7500d41265d1bef0076ae125 (diff)
downloadparamiko-dad77ab135152deda5c0dde879af2791f47b650f.tar.gz
Whoops this was technically incorrect
Diffstat (limited to 'paramiko/channel.py')
-rw-r--r--paramiko/channel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/channel.py b/paramiko/channel.py
index d7938b19..9f2d8f01 100644
--- a/paramiko/channel.py
+++ b/paramiko/channel.py
@@ -1376,5 +1376,5 @@ class ChannelStderrFile(ChannelFile):
class ChannelStdinFile(ChannelFile):
def close(self):
- super(ChannelFile, self).close()
+ super(ChannelStdinFile, self).close()
self.channel.shutdown_write()