Skip to content

Commit

Permalink
fix encoding issue in console output (Noctem#312)
Browse files Browse the repository at this point in the history
escaped the "é" in "Pokémon"
  • Loading branch information
svenluijten authored and Simon committed Jul 19, 2016
1 parent 5e3c3b9 commit 7fa64b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def main():

def process_step(args, api_endpoint, access_token, profile_response,
pokemonsJSON, ignore, only):
print('[+] Searching for Pokémon at location {} {}'.format(FLOAT_LAT, FLOAT_LONG))
print('[+] Searching for Pok'+u'\xe9'+'mon at location {} {}'.format(FLOAT_LAT, FLOAT_LONG))
origin = LatLng.from_degrees(FLOAT_LAT, FLOAT_LONG)
step_lat = FLOAT_LAT
step_long = FLOAT_LONG
Expand Down

0 comments on commit 7fa64b4

Please sign in to comment.