We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I input the following: python deploystudio_users.py -r /Users/Shared/DS-Repo -f ~/Desktop/Import.csv -H y
python deploystudio_users.py -r /Users/Shared/DS-Repo -f ~/Desktop/Import.csv -H y
And got this in return:
File "deploystudio_users.py", line 150 row++ ^ SyntaxError: invalid syntax
The text was updated successfully, but these errors were encountered:
Hey,
What version of Python are you using?
Sorry, something went wrong.
I will look into this issue for you today and get back to you.
In the mean time, try changing row++ to row += 1
This is a Python 2 code base.
fixed issue #1. Python does not support the ++ syntax.
540a033
Hey @cmaliwat,
I think this issue is fixed in the latest commit.
Please git pull and let me know how it goes!
Thanks for letting me know about this issue.
@wallarug
Thanks! I was running Python 2.7.12
wallarug
No branches or pull requests
I input the following:
python deploystudio_users.py -r /Users/Shared/DS-Repo -f ~/Desktop/Import.csv -H y
And got this in return:
The text was updated successfully, but these errors were encountered: