diff options
author | Nao Pross <naopross@thearcway.org> | 2020-04-20 00:49:39 +0200 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2020-04-20 00:49:39 +0200 |
commit | 5cad091cd917d54365430b5ff9d727274d90b725 (patch) | |
tree | caffca9bc7c3725d60a55e4feee88732b30b4b3b | |
parent | Remove prompt for Dockerization (diff) | |
download | hchat-tg-bridge-5cad091cd917d54365430b5ff9d727274d90b725.tar.gz hchat-tg-bridge-5cad091cd917d54365430b5ff9d727274d90b725.zip |
Fix main thread exit condition
-rwxr-xr-x | control.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -214,7 +214,7 @@ if __name__ == "__main__": print("started bots") print("bridging ...") - while True: + while not should_quit: pass # while not should_quit: |