summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/plugin.py b/python/plugin.py
index 1aeb49d2..a3eafdde 100644
--- a/python/plugin.py
+++ b/python/plugin.py
@@ -657,5 +657,5 @@ class BackgroundTaskThread(BackgroundTask):
def start(self):
self.thread.start()
- def join(self):
- self.thread.join()
+ def join(self, timeout=None):
+ self.thread.join(timeout)