Skip to content

Commit

Permalink
Fixed bot run command to start separate threads
Browse files Browse the repository at this point in the history
  • Loading branch information
Koen van Eijk committed Sep 30, 2020
1 parent 06e2acd commit c884843
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion automagica/cli.py
Expand Up @@ -42,7 +42,8 @@ def bot():
'automagica bot' launches the Automagica Bot
"""
root = AutomagicaTk()
_ = BotApp(root)
app = BotApp(root)
app.run()
root.mainloop()


Expand Down

0 comments on commit c884843

Please sign in to comment.