Using "vars_prompt" on MacOSX 10.9.5

I have been using Ansible to manage hosts in my network for about a month and I have been trying use the “vars_prompt” to gather usernames and password variables for later in the Playbook run. On Ubuntu and even Debian I get the results I am looking for but on Mac I get errors. Here is a super dumbed down play that works like a champ on Ubuntu, but fails on Mac:

`

Do you have LANG and LC_ALL set in your environment variables when you are running ansible:

Maybe you are hitting something similar to this problem?
: http://stackoverflow.com/questions/1830394/python-locale-strange-error-whats-going-on-here-exactly

Thanks for the quick response, this fixed my issue.

`
export LC_CTYPE=“UTF-8”

`

I also made an error on my Playbook and am posting the corrected one:

`