diff --git a/amarillo/plugins/enhancer/enhancer.py b/amarillo/plugins/enhancer/enhancer.py index 30b44e6..d459585 100644 --- a/amarillo/plugins/enhancer/enhancer.py +++ b/amarillo/plugins/enhancer/enhancer.py @@ -70,7 +70,7 @@ def run_enhancer(): logger.info("Goodbye Enhancer") def setup(app): - thread = Thread(target=run_enhancer) + thread = Thread(target=run_enhancer, daemon=True) thread.start()