summaryrefslogtreecommitdiffstats
path: root/module/PullEvents.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/PullEvents.py')
-rw-r--r--module/PullEvents.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/PullEvents.py b/module/PullEvents.py
index 16566cfae..4f250d2f7 100644
--- a/module/PullEvents.py
+++ b/module/PullEvents.py
@@ -18,6 +18,7 @@
"""
from time import time
+from module.utils import uniqify
class PullManager():
def __init__(self, core):
@@ -45,7 +46,7 @@ class PullManager():
if not validUuid:
self.newClient(uuid)
events = [ReloadAllEvent("queue").toList(), ReloadAllEvent("collector").toList()]
- return events
+ return uniqify(events, repr)
def addEvent(self, event):
for client in self.clients: