summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2005-07-14 02:36:15 +0000
committerRobey Pointer <robey@lag.net>2005-07-14 02:36:15 +0000
commitb5f0b3c7869a9614722403a03476ad7feb2a0b69 (patch)
tree91d89608550c2398335d9658ffb7f8ac2a76ba30
parent1a6ba349da8dc0d94becb1e116129f88d83e2a33 (diff)
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-37]
remove debug print
-rw-r--r--paramiko/channel.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/paramiko/channel.py b/paramiko/channel.py
index 92e071b6..3c9fa35e 100644
--- a/paramiko/channel.py
+++ b/paramiko/channel.py
@@ -470,7 +470,6 @@ class Channel (object):
# only close the pipe when the user explicitly closes the channel.
# otherwise they will get unpleasant surprises.
if self.pipe is not None:
- print 'closing pipe!'
self.pipe.close()
self.pipe = None
finally: