diff options
author | pjmattal <pjmattal> | 2007-02-11 21:56:33 +0000 |
---|---|---|
committer | pjmattal <pjmattal> | 2007-02-11 21:56:33 +0000 |
commit | a19d27a70a564a73a818eacc45c65debe47d6d27 (patch) | |
tree | de407beea2948406e9f38262d549d6602897153a /tupkg/server/tupkgs | |
parent | 723f1afde8ebb066700e64ccff74d2e04a0a2f3d (diff) | |
download | aurweb-a19d27a70a564a73a818eacc45c65debe47d6d27.tar.xz |
fixed bug #5779 - error with + in package names
Diffstat (limited to 'tupkg/server/tupkgs')
-rwxr-xr-x | tupkg/server/tupkgs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tupkg/server/tupkgs b/tupkg/server/tupkgs index 3b2c510..a561815 100755 --- a/tupkg/server/tupkgs +++ b/tupkg/server/tupkgs @@ -92,7 +92,7 @@ class ClientSocket(threading.Thread): 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) |