Skip to content

Commit

Permalink
Fix bug from PokemonGoF#4822
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Yao committed Aug 28, 2016
1 parent e58855f commit 6d8069a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pokecli.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,9 @@ def get_commit_hash():
config, _ = init_config()

if config.live_config_update_tasks_only: initialize_task(bot, config)
else: bot = initialize(config)
else:
bot = initialize(config)
bot = start_bot(bot,config)

except KeyboardInterrupt:
bot.event_manager.emit(
Expand Down

0 comments on commit 6d8069a

Please sign in to comment.