mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 10:40:22 -07:00
Restore the python3-compat import __future__ and Exception as update.
This commit is contained in:
parent
3aede800c5
commit
af2dff9cfb
1 changed files with 6 additions and 5 deletions
|
@ -14,7 +14,8 @@
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# The paramiko transport is provided because many distributions, in particular EL6 and before
|
# The paramiko transport is provided because many distributions, in particular EL6 and before
|
||||||
|
@ -173,7 +174,7 @@ class Connection(ConnectionBase):
|
||||||
timeout=self._connection_info.timeout,
|
timeout=self._connection_info.timeout,
|
||||||
port=port,
|
port=port,
|
||||||
)
|
)
|
||||||
except Exception, e:
|
except Exception as e:
|
||||||
msg = str(e)
|
msg = str(e)
|
||||||
if "PID check failed" in msg:
|
if "PID check failed" in msg:
|
||||||
raise AnsibleError("paramiko version issue, please upgrade paramiko on the machine running ansible")
|
raise AnsibleError("paramiko version issue, please upgrade paramiko on the machine running ansible")
|
||||||
|
@ -197,7 +198,7 @@ class Connection(ConnectionBase):
|
||||||
try:
|
try:
|
||||||
self.ssh.get_transport().set_keepalive(5)
|
self.ssh.get_transport().set_keepalive(5)
|
||||||
chan = self.ssh.get_transport().open_session()
|
chan = self.ssh.get_transport().open_session()
|
||||||
except Exception, e:
|
except Exception as e:
|
||||||
msg = "Failed to open session"
|
msg = "Failed to open session"
|
||||||
if len(str(e)) > 0:
|
if len(str(e)) > 0:
|
||||||
msg += ": %s" % str(e)
|
msg += ": %s" % str(e)
|
||||||
|
@ -256,7 +257,7 @@ class Connection(ConnectionBase):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self.sftp = self.ssh.open_sftp()
|
self.sftp = self.ssh.open_sftp()
|
||||||
except Exception, e:
|
except Exception as e:
|
||||||
raise AnsibleError("failed to open a SFTP connection (%s)" % e)
|
raise AnsibleError("failed to open a SFTP connection (%s)" % e)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -280,7 +281,7 @@ class Connection(ConnectionBase):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self.sftp = self._connect_sftp()
|
self.sftp = self._connect_sftp()
|
||||||
except Exception, e:
|
except Exception as e:
|
||||||
raise AnsibleError("failed to open a SFTP connection (%s)", e)
|
raise AnsibleError("failed to open a SFTP connection (%s)", e)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue