Small cleanup to use class attribute directly instead of property for transport names

This commit is contained in:
Toshio Kuratomi 2016-03-16 11:22:50 -07:00
parent fee73100c4
commit de306eb5da
3 changed files with 3 additions and 13 deletions

View file

@ -126,10 +126,7 @@ SFTP_CONNECTION_CACHE = {}
class Connection(ConnectionBase):
''' SSH based connections with Paramiko '''
@property
def transport(self):
''' used to identify this connection object from other classes '''
return 'paramiko'
transport = 'paramiko'
def _cache_key(self):
return "%s__%s__" % (self._play_context.remote_addr, self._play_context.remote_user)