summaryrefslogtreecommitdiffstats
path: root/module/PullEvents.py
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2011-01-31 15:39:03 +0100
committerGravatar mkaay <mkaay@mkaay.de> 2011-01-31 15:39:03 +0100
commitffb4c1124d52e19128881c6d78a3009b191c8bbe (patch)
tree6dae99495d1a96c56f33caaf622c09dd0639db98 /module/PullEvents.py
parentclosed #223 (diff)
downloadpyload-ffb4c1124d52e19128881c6d78a3009b191c8bbe.tar.xz
fixed gui notification
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: