1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fix up minor type - AnsibleException should be AnsibleError

This commit is contained in:
Seth Vidal 2012-03-23 11:59:08 -04:00
parent 1ea1994eca
commit 89d4bc542c

View file

@ -84,7 +84,7 @@ class ParamikoConnection(object):
try: try:
sftp.put(in_path, out_path) sftp.put(in_path, out_path)
except IOError: except IOError:
raise errors.AnsibleException("failed to transfer file to %s" % out_path) raise errors.AnsibleError("failed to transfer file to %s" % out_path)
sftp.close() sftp.close()
def close(self): def close(self):