Skip to content

Commit

Permalink
Merge pull request #5689 from cmezh/p
Browse files Browse the repository at this point in the history
Parenthesis fix
  • Loading branch information
YvesHenri authored Sep 26, 2016
2 parents 6837096 + fccffd5 commit 8e6a156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokemongo_bot/cell_workers/pokemon_catch_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def work(self, response_dict=None):
# log encounter
self.emit_event(
'pokemon_appeared',
formatted='A wild {} appeared! (CP: {} IV: {} A/D/S {} NCP: {}'.format(pokemon.name, pokemon.cp, pokemon.iv, pokemon.iv_display, round(pokemon.cp_percent, 2),),
formatted='A wild {} appeared! (CP: {} IV: {} A/D/S {} NCP: {})'.format(pokemon.name, pokemon.cp, pokemon.iv, pokemon.iv_display, round(pokemon.cp_percent, 2),),
data={
'pokemon': pokemon.name,
'ncp': round(pokemon.cp_percent, 2),
Expand Down

0 comments on commit 8e6a156

Please sign in to comment.