From 9b5b0dcf8b2f98f09c45e6210cc286157a92e83d Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Thu, 9 May 2013 20:21:22 +0200 Subject: [PATCH] boobot: Do not quote the semicolon --- contrib/boobot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/boobot.py b/contrib/boobot.py index 970f22bc..4fad0e3d 100755 --- a/contrib/boobot.py +++ b/contrib/boobot.py @@ -71,7 +71,7 @@ def fixurl(url): urllib.quote(urllib.unquote(pce).encode('utf8'), '') for pce in parsed.path.split('/') ) - query = urllib.quote(urllib.unquote(parsed.query).encode('utf8'), '=&?/') + query = urllib.quote(urllib.unquote(parsed.query).encode('utf8'), '=&?/;') fragment = urllib.quote(urllib.unquote(parsed.fragment).encode('utf8')) # put it back together