summaryrefslogtreecommitdiffstats
path: root/pyload/manager/Remote.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/manager/Remote.py')
-rw-r--r--pyload/manager/Remote.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pyload/manager/Remote.py b/pyload/manager/Remote.py
index 3c6dabefa..6023cdcfd 100644
--- a/pyload/manager/Remote.py
+++ b/pyload/manager/Remote.py
@@ -1,13 +1,14 @@
# -*- coding: utf-8 -*-
# @author: RaNaN
+import threading
import traceback
-class BackendBase(Thread):
+class BackendBase(threading.Thread):
def __init__(self, manager):
- Thread.__init__(self)
+ threading.Thread.__init__(self)
self.m = manager
self.core = manager.core
self.enabled = True