summaryrefslogtreecommitdiffstats
path: root/pyload/manager/event/PullEvents.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/manager/event/PullEvents.py')
-rw-r--r--pyload/manager/event/PullEvents.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/manager/event/PullEvents.py b/pyload/manager/event/PullEvents.py
index 0739b4ec8..aa78f590e 100644
--- a/pyload/manager/event/PullEvents.py
+++ b/pyload/manager/event/PullEvents.py
@@ -20,7 +20,7 @@
from time import time
from pyload.utils import uniqify
-class PullManager:
+class PullManager(object):
def __init__(self, core):
self.core = core
self.clients = []
@@ -52,7 +52,7 @@ class PullManager:
for client in self.clients:
client.addEvent(event)
-class Client:
+class Client(object):
def __init__(self, uuid):
self.uuid = uuid
self.lastActive = time()
@@ -69,7 +69,7 @@ class Client:
def addEvent(self, event):
self.events.append(event)
-class UpdateEvent:
+class UpdateEvent(object):
def __init__(self, itype, iid, destination):
assert itype == "pack" or itype == "file"
assert destination == "queue" or destination == "collector"
@@ -80,7 +80,7 @@ class UpdateEvent:
def toList(self):
return ["update", self.destination, self.type, self.id]
-class RemoveEvent:
+class RemoveEvent(object):
def __init__(self, itype, iid, destination):
assert itype == "pack" or itype == "file"
assert destination == "queue" or destination == "collector"
@@ -91,7 +91,7 @@ class RemoveEvent:
def toList(self):
return ["remove", self.destination, self.type, self.id]
-class InsertEvent:
+class InsertEvent(object):
def __init__(self, itype, iid, after, destination):
assert itype == "pack" or itype == "file"
assert destination == "queue" or destination == "collector"
@@ -103,7 +103,7 @@ class InsertEvent:
def toList(self):
return ["insert", self.destination, self.type, self.id, self.after]
-class ReloadAllEvent:
+class ReloadAllEvent(object):
def __init__(self, destination):
assert destination == "queue" or destination == "collector"
self.destination = destination
@@ -111,10 +111,10 @@ class ReloadAllEvent:
def toList(self):
return ["reload", self.destination]
-class AccountUpdateEvent:
+class AccountUpdateEvent(object):
def toList(self):
return ["account"]
-class ConfigUpdateEvent:
+class ConfigUpdateEvent(object):
def toList(self):
return ["config"]