-
Notifications
You must be signed in to change notification settings - Fork 652
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
UnicodeEncodeError #101
Comments
I got the same problem. |
Read the fix at: #88 |
thx! |
I got same problem how to solve bro tell me plz |
Traceback (most recent call last): |
Same issue on raspberry pi2 (Kali 3.2) and Nexus5 (Kali Nethunter 3.2)
Traceback (most recent call last):
File "/opt/xerosploit/xerosploit.py", line 980, in main
home()
File "/opt/xerosploit/xerosploit.py", line 89, in home
print (tabulate(table, stralign="center",tablefmt="fancy_grid",headers="firstrow"))
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-78: ordinal not in range(128)
solved adding .encode('utf-8') to line 89:
print (tabulate(table, stralign="center",tablefmt="fancy_grid",headers="firstrow")).encode('utf-8')
same for all the lines
print(table.table)
to the following:
print(table.table).encode('utf-8')
The text was updated successfully, but these errors were encountered: