veekun / pokedex

more than you ever wanted to know about Pokémon
MIT License
1.44k stars 637 forks source link

UnicodeEncodeError pokedex #185

Closed Todeskuss closed 8 years ago

Todeskuss commented 8 years ago

I get this when I run bin/pokedex load -e postgresql://[username]:[password]@localhost/[database]

UnicodeEncodeError: 'ascii' codec can't encode character u'\xe1' in position 5: ordinal not in range(128)

and I get this when I run bin/pokedex -h

UnicodeEncodeError: 'ascii' codec can't encode character u'\xe9' in position 151: ordinal not in range(128)
Todeskuss commented 8 years ago

Was an issue with PuTTY misconfiguration and locale encoding not being set up. Fixed by adding export LC_ALL=en_US.UTF-8 to ~/.bashrc

Closed