diff options
author | Robey Pointer <robey@lag.net> | 2004-11-22 07:40:39 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2004-11-22 07:40:39 +0000 |
commit | 13f818f04f53573f873a019874dbdaec79e5365e (patch) | |
tree | be225e32f60cb90c920ed611138c593fcab02902 | |
parent | a8a023a2432753bc6bdfdd0011b66869642845d0 (diff) |
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-114]
fix typo in channel
fix typo that alain found: pipd_wfd -> pipe_wfd.
-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 b725a030..833ae62b 100644 --- a/paramiko/channel.py +++ b/paramiko/channel.py @@ -828,7 +828,7 @@ class Channel (object): return x = self.in_buffer[:nbytes] self.in_buffer = self.in_buffer[nbytes:] - os.write(self.pipd_wfd, x) + os.write(self.pipe_wfd, x) def _unlink(self): if self.closed or not self.active: |