From 13f818f04f53573f873a019874dbdaec79e5365e Mon Sep 17 00:00:00 2001 From: Robey Pointer Date: Mon, 22 Nov 2004 07:40:39 +0000 Subject: [PATCH] [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. --- paramiko/channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paramiko/channel.py b/paramiko/channel.py index b725a03..833ae62 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: