diff options
author | Ken Jordan <ken@holeintheground.us> | 2015-01-22 19:41:15 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2015-02-04 15:53:27 -0800 |
commit | b26dbc3f719e9844721d38d6264c5cb5e0ed4c2f (patch) | |
tree | 7317444e907cbcb958e7bf75cb076fb27574fb19 | |
parent | 3700d6e151d7891a12b958cf8f2729576205d927 (diff) |
Removed debug print statements
-rw-r--r-- | paramiko/agent.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/paramiko/agent.py b/paramiko/agent.py index 185666e7..01bd0252 100644 --- a/paramiko/agent.py +++ b/paramiko/agent.py @@ -113,9 +113,6 @@ class AgentProxyThread(threading.Thread): self.__inr = r self.__addr = addr # This should be an IP address as a string? or None self._agent.connect() - print("Conn Value: ", self._agent._conn) - print("Has fileno method: ", hasattr(self._agent._conn, 'fileno')) - print("Verify isinstance of int: ", isinstance(self._agent, int)) if self._agent._conn is None or not (hasattr(self._agent._conn, 'fileno') or isinstance(self._agent, int)): raise AuthenticationException("Unable to connect to SSH agent") self._communicate() |