From 50553bc2ba037a9dceaceb037ef95d60aa1e899d Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Tue, 1 Dec 2015 09:11:47 -0800 Subject: [PATCH] _connect no longer takes a port argument --- lib/ansible/plugins/connection/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/connection/local.py b/lib/ansible/plugins/connection/local.py index 0244f90d597..e69281d0f3b 100644 --- a/lib/ansible/plugins/connection/local.py +++ b/lib/ansible/plugins/connection/local.py @@ -45,7 +45,7 @@ class Connection(ConnectionBase): ''' used to identify this connection object ''' return 'local' - def _connect(self, port=None): + def _connect(self): ''' connect to the local host; nothing to do here ''' # Because we haven't made any remote connection we're running as