I have a small flask app, and for some reason the parameters get only partially encoded. In particular, it looks like spaces ' ' get encoded as '+' instead of '%20' - how can I fix this?
Asked
Active
Viewed 945 times
0
-
2What exactly is wrong with that encoding? [If you're confused about the difference, here's a reference link.](http://stackoverflow.com/q/1634271/1079354) – Makoto Feb 13 '15 at 02:39
-
2Form parameters **should** be encoded as `+`. What makes you think otherwise? – Martijn Pieters Feb 13 '15 at 16:10