Connection to Target server Failing

Hi,

I am getting below error when i am trying to connect to my target server

fatal: [hostname]: FAILED! => {“changed”: false, “module_stderr”: “Connection to hostname closed.\r\n”, “module_stdout”: " File "/home/gopa/.ansible/tmp/ansible-tmp-1595866958.593897-39491564121298/AnsiballZ_setup.py", line 39\r\n with open(module, ‘wb’) as f:\r\n ^\r\nSyntaxError: invalid syntax\r\n", “msg”: “MODULE FAILURE\nSee stdout/stderr for the exact error”, “rc”: 1}

My target having python 2.7.2 version.

Also i tried by setting remote_tmp = /tmp/ansible-$USER. Also getting the same issue.

Please help

Ansible version?

Target os?
Playbook?
Invocation and arguments?
Inventory?

Please send

Issue got resolved after changing the ansible_python_interpreter=/usr/local/bin/python. I am using redhat version 5 where two different python version python2.4 and python2.7 is available. Python2.4 is in default location /usr/bin and python2.7 is in /usr/local/bin/python. After some research i found ansible automatic use the default interpreter which is /usr/bin that the reason i was getting issue After changing that variable issue got resolved.

Anyway Thanks for the quick response. Really appreciated.