From a19d27a70a564a73a818eacc45c65debe47d6d27 Mon Sep 17 00:00:00 2001 From: pjmattal Date: Sun, 11 Feb 2007 21:56:33 +0000 Subject: fixed bug #5779 - error with + in package names --- tupkg/client/tupkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tupkg/client') 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) -- cgit v1.2.3-54-g00ecf