summaryrefslogtreecommitdiffstats
path: root/module/remote/ClientHandler.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/remote/ClientHandler.py')
-rw-r--r--module/remote/ClientHandler.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/remote/ClientHandler.py b/module/remote/ClientHandler.py
index 6f208a3f5..3fcee3f79 100644
--- a/module/remote/ClientHandler.py
+++ b/module/remote/ClientHandler.py
@@ -7,6 +7,7 @@ this module handels the incoming requests
"""
import hashlib
+import wx
from Crypto.Cipher import Blowfish
from RequestHandler import RequestHandler
@@ -20,5 +21,5 @@ class ClientHandler(RequestHandler):
def proceed(self, data):
obj = self.decrypt(data)
if obj.function == "get_downloads":
- print obj.response
+ self.client.show_links(obj.response)
return self.encrypt(obj)