fix up minor type - AnsibleException should be AnsibleError

pull/70/head
Seth Vidal 13 years ago
parent 1ea1994eca
commit 89d4bc542c

@ -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):

Loading…
Cancel
Save