Skip to content

Commit 7fa64b4

Browse files
svenluijtenSimon
authored and
Simon
committed
fix encoding issue in console output (Noctem#312)
escaped the "é" in "Pokémon"
1 parent 5e3c3b9 commit 7fa64b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def main():
630630

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

0 commit comments

Comments
 (0)