[google-appengine] Re: Query string parameter encoding

2009-08-07 Thread Baba Ganoush
Awesome thanks, that did the trick. Thanks for the help On Aug 7, 9:26 am, "Nick Johnson (Google)" wrote: > Hi Baba, > > It looks like you're trying to pass binary data through a URL by > copying and pasting it. The escape sequences that Python strings use > (\xxx) are not the same as the esca

[google-appengine] Re: Query string parameter encoding

2009-08-07 Thread Nick Johnson (Google)
Hi Baba, It looks like you're trying to pass binary data through a URL by copying and pasting it. The escape sequences that Python strings use (\xxx) are not the same as the escape sequences used in URLs (%xx), so the result is that your browser is escaping your already-python-escaped string. Wha