diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-06-14 21:03:58 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-06-14 21:03:58 -0400 |
commit | dad77ab135152deda5c0dde879af2791f47b650f (patch) | |
tree | 4bb7d6a1c5bdb14a58ed0c4bfb7d2f38f59afa0d | |
parent | 0ba86b0813d57c0f7500d41265d1bef0076ae125 (diff) |
Whoops this was technically incorrect
-rw-r--r-- | paramiko/channel.py | 2 |
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() |