From 54af80d5ad6c4d3aa2977a4b4febaf0987874910 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 30 Nov 2013 12:51:35 +0100 Subject: [PATCH] Don't wait for shutdown of scheduler --- couchpotato/core/_base/scheduler/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/_base/scheduler/main.py b/couchpotato/core/_base/scheduler/main.py index 87b05335..773213be 100644 --- a/couchpotato/core/_base/scheduler/main.py +++ b/couchpotato/core/_base/scheduler/main.py @@ -37,7 +37,7 @@ class Scheduler(Plugin): def stop(self): if self.started: log.debug('Stopping scheduler') - self.sched.shutdown() + self.sched.shutdown(wait = False) log.debug('Scheduler stopped') self.started = False