summaryrefslogtreecommitdiff
path: root/paramiko/pipe.py
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2005-10-13 18:52:59 +0000
committerRobey Pointer <robey@lag.net>2005-10-13 18:52:59 +0000
commit6eab0b3b4df096aa6b9421c8fe342078d182c523 (patch)
treea971bd201673ccfaa4f831308945d9dc670a1c40 /paramiko/pipe.py
parent8bb5e65499661bc1e0556ccfe56c4317d70317cd (diff)
downloadparamiko-6eab0b3b4df096aa6b9421c8fe342078d182c523.tar.gz
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-65]
remove unnecessary shebangs, fix import lines to be explicit about imports from within paramiko, and a bit of whitespace cleanup
Diffstat (limited to 'paramiko/pipe.py')
-rw-r--r--paramiko/pipe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/pipe.py b/paramiko/pipe.py
index 332090e0..8c539877 100644
--- a/paramiko/pipe.py
+++ b/paramiko/pipe.py
@@ -67,7 +67,7 @@ class WindowsPipe (object):
serv.bind(('127.0.0.1', 0))
serv.listen(1)
- # need to save sockets in pipe_rsock/pipe_wsock so they don't get closed
+ # need to save sockets in _rsock/_wsock so they don't get closed
self._rsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self._rsock.connect(('127.0.0.1', serv.getsockname()[1]))