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
porperly display of correct name
Raise an exception on python lib decode
Bot in spain near pokestop with ñ character
OS: Git Commit: (run 'git log -n 1 --pretty=format:"%H"' and paste it here)
Fix
pokemongo_bot/logger.py at line 20
if color not in color_hex:
else: print('[' + time.strftime("%H:%M:%S") + '] ' + u'\033[' + color_hex[color] + string.decode('utf-8') + '\033[0m') if lcd: if string: lcd.message(string)
The text was updated successfully, but these errors were encountered:
#1817 duplicate issue, fix already underway.
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
porperly display of correct name
Actual Behavior
Raise an exception on python lib decode
Steps to Reproduce
Bot in spain near pokestop with ñ character
Other Information
OS:
Git Commit: (run 'git log -n 1 --pretty=format:"%H"' and paste it here)
Fix
pokemongo_bot/logger.py at line 20
if color not in color_hex:
REPLACE START
DEL print('[' + time.strftime("%H:%M:%S") + '] ' + string)
ADD print('[' + time.strftime("%H:%M:%S") + '] ' + string.decode('utf-8'))
END RELACE
The text was updated successfully, but these errors were encountered: