From e5f4998e330d3ae47b606760767a1f24ceadd118 Mon Sep 17 00:00:00 2001 From: Mordana Date: Sat, 23 Jul 2016 17:03:21 +0200 Subject: [PATCH] Updated initial_transfer, show names of releases Now shows "[x] Releasing Rattata with CP 169" instead of "[x] Releasing Pokemon #19 and CP 169" Also changed typo in "print('[x] Transferring Done.')" --- pokemongo_bot/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pokemongo_bot/__init__.py b/pokemongo_bot/__init__.py index b76be0f3f1..6a3f862461 100644 --- a/pokemongo_bot/__init__.py +++ b/pokemongo_bot/__init__.py @@ -215,14 +215,14 @@ def initial_transfer(self): if self.config.cp and group_cp[x] > self.config.cp: continue - print('[x] Releasing Pokemon #{} and CP {}'.format( - id, group_cp[x])) + print('[x] Transferring {} with CP {}'.format( + self.pokemon_list[id-1]['Name'], group_cp[x])) self.api.release_pokemon( pokemon_id=pokemon_groups[id][group_cp[x]]) response_dict = self.api.call() sleep(2) - print('[x] Transfering Done.') + print('[x] Transferring Done.') def _initial_transfer_get_groups(self): pokemon_groups = {}