-
Notifications
You must be signed in to change notification settings - Fork 40
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
Error on line 38 #7
Comments
This is not an error; it is a string formatting: https://www.python.org/dev/peps/pep-0498/#abstract |
@gregsonar well it is, because it says "SyntaxError: invalid syntax" on that line. and i have python3.5, also tested with 2.7. both didnt work |
Fixed this with PR. |
thanks @brammittendorff , merged it to master |
@SoledaD208 No problem. @hotpheex @gregsonar @slow-down please let us know if it works now, so we can close this Issue. |
@brammittendorff yes, this solve the issue for python <3.6 |
@dekelb Thanks for checking. @SoledaD208 now you can close this issue. |
38: print(f'SSH Exception: {e}', file=sys.stdout)
Should be:
38: printf('SSH Exception: {e}', file=sys.stdout)
The text was updated successfully, but these errors were encountered: