summaryrefslogtreecommitdiffstats
path: root/tupkg/client
diff options
context:
space:
mode:
authorpjmattal <pjmattal>2007-02-11 21:56:33 +0000
committerpjmattal <pjmattal>2007-02-11 21:56:33 +0000
commita19d27a70a564a73a818eacc45c65debe47d6d27 (patch)
treede407beea2948406e9f38262d549d6602897153a /tupkg/client
parent723f1afde8ebb066700e64ccff74d2e04a0a2f3d (diff)
downloadaurweb-a19d27a70a564a73a818eacc45c65debe47d6d27.tar.xz
fixed bug #5779 - error with + in package names
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)