summaryrefslogtreecommitdiffstats
path: root/tupkg/client
diff options
context:
space:
mode:
Diffstat (limited to 'tupkg/client')
-rwxr-xr-xtupkg/client/tupkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/tupkg/client/tupkg b/tupkg/client/tupkg
index 4ce1fa0..a1d26d5 100755
--- a/tupkg/client/tupkg
+++ b/tupkg/client/tupkg
@@ -62,7 +62,7 @@ class ClientSocket:
def sendMsg(self, msg):
if type(msg) == dict:
- msg = urllib.unquote(urllib.urlencode(msg,1))
+ msg = urllib.urlencode(msg,1)
length = struct.pack("H", socket.htons(len(msg)))
self.socket.sendall(length)
self.socket.sendall(msg)