Skip to content

Commit

Permalink
Fixed a bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
solderzzc committed Aug 7, 2016
1 parent 0315892 commit c21fad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokemongo_bot/cell_workers/catch_visible_pokemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def work(self):
)

for pokemon in self.bot.cell['catchable_pokemons']:
with open(user_web_catchable, 'w') as outfile:
with open('user_web_catchable', 'w') as outfile:
json.dump(pokemon, outfile)
self.emit_event(
'catchable_pokemon',
Expand Down

1 comment on commit c21fad0

@DevScarabyte
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how is that a bug? user_web_catchable should be a variable not a string.

Please sign in to comment.