diff options
| author | Arnaud <noar@melomac.com> | 2019-04-04 16:23:22 +0200 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2019-04-11 15:36:45 -0400 |
| commit | 19e16da327584913a5eaa9e1fbe8c5d67265d7b4 (patch) | |
| tree | 543d3d84604ce1992883d21abfcd921516103c02 /python/plugin.py | |
| parent | 3a8629fb98440cc0064d505f5e7a7ba600bee5c9 (diff) | |
added timeout parameter to BackgroundTaskThread.join()
Diffstat (limited to 'python/plugin.py')
| -rw-r--r-- | python/plugin.py | 4 |
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) |
