Commit 24416b9e by Michael DeHaan

Remove stray debug message

parent 3257c5b6
...@@ -57,7 +57,6 @@ class Connection(object): ...@@ -57,7 +57,6 @@ class Connection(object):
def connect(self): def connect(self):
cache_key = self._cache_key() cache_key = self._cache_key()
if cache_key in SSH_CONNECTION_CACHE: if cache_key in SSH_CONNECTION_CACHE:
print "DEBUG: using cached"
self.ssh = SSH_CONNECTION_CACHE[cache_key] self.ssh = SSH_CONNECTION_CACHE[cache_key]
else: else:
print "DEBUG: using new" print "DEBUG: using new"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment