From 9f20a17228df7fe0602e40cf744f59e1ca797fc2 Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Wed, 17 Nov 2010 23:32:23 -0500 Subject: [PATCH] url formatting: don't escape the quote We don't need to do this. It causes problems with last.fm --- libsaria/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsaria/web.py b/libsaria/web.py index c07130df..6e82d256 100644 --- a/libsaria/web.py +++ b/libsaria/web.py @@ -7,7 +7,7 @@ import string HEADER = libsaria.__vers__ vals = [ ('%','25'), (' ','20'), ('&','26'), ('<','3C'), ('>','3E'), - ('"','22'), ('#','23'), ('$','24'), ('\'','27'), ('+','2B'), + ('"','22'), ('#','23'), ('$','24'), ('+', '2B'), #('\'','27'), ('+','2B'), (',','2C'), ('/','2F'), (':','3A'), ('[','5B'), (']','5D')] #vals = [ (' ','20'), ('&','26') ]