url formatting: don't escape the quote

We don't need to do this.  It causes problems with last.fm
This commit is contained in:
Bryan Schumaker 2010-11-17 23:32:23 -05:00
parent 2ab7ace608
commit 9f20a17228
1 changed files with 1 additions and 1 deletions

View File

@ -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') ]