Skip to content

Commit

Permalink
fixed transfer worker api crash (#1369)
Browse files Browse the repository at this point in the history
* fixed transfer worker api crash

try catch exception to prevent bot from crashing

* better cach error method
  • Loading branch information
fredrik-hellmangroup authored and tstumm committed Jul 28, 2016
1 parent 7e608c2 commit e25a709
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pokemongo_bot/cell_workers/pokemon_transfer_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ def _release_pokemon_get_groups(self):
pokemon_groups = {}
self.api.get_player().get_inventory()
inventory_req = self.api.call()
inventory_dict = inventory_req['responses']['GET_INVENTORY'][
'inventory_delta']['inventory_items']

if inventory_req.get('responses', False) is False:
return pokemon_groups

inventory_dict = inventory_req['responses']['GET_INVENTORY']['inventory_delta']['inventory_items']

user_web_inventory = 'web/inventory-%s.json' % (self.config.username)
with open(user_web_inventory, 'w') as outfile:
Expand Down

0 comments on commit e25a709

Please sign in to comment.