diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-31 21:43:41 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-31 21:43:41 +0200 |
commit | 1193b9c68caba33f19baa4265349a89ff5a777a6 (patch) | |
tree | 63350f4f44b08a66cdc2be201174f7ec76ab96d3 /module/remote/ClientHandler.py | |
parent | gui socket finally works (diff) | |
download | pyload-1193b9c68caba33f19baa4265349a89ff5a777a6.tar.xz |
socket interface example
Diffstat (limited to 'module/remote/ClientHandler.py')
-rw-r--r-- | module/remote/ClientHandler.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/remote/ClientHandler.py b/module/remote/ClientHandler.py index 6f60d5176..6f208a3f5 100644 --- a/module/remote/ClientHandler.py +++ b/module/remote/ClientHandler.py @@ -19,5 +19,6 @@ class ClientHandler(RequestHandler): def proceed(self, data): obj = self.decrypt(data) - #evaluate object + if obj.function == "get_downloads": + print obj.response return self.encrypt(obj) |