-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NameError: name 'raw_input' is not defined #83
Comments
Doing manual installation as per the plugin's README and then changing |
Installing via ansible-galaxy, then changing raw_input to input fixes this for Python 3. I agree with @mx781 that this fix would benefit the community, can we make a PR @andrewvaughan? |
Hey all - I'm a little tight on time right now (having my first kid!) but I'm still supporting this project. If anyone wishes to submit a PR I'll definitely make sure it gets in. |
This fixes andrewvaughan#83. In Python3, `raw_input` is not available, but `input` does pretty much the same thing.
Project Details
Error on every prompt attempt
I think this is the problem of using python3 as they removed
raw_input
(ref: https://www.python.org/dev/peps/pep-3111/)The text was updated successfully, but these errors were encountered: