-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Existing path encoding is modified #55
Comments
furl('/some%2520path').url
-> '/some%20path' This is intended; furl expects percent-encoded URLs as input.
furl then decodes furl('/some%252Bpath').url
-> '/some+path' looks like a bug: the Path should not be decoded twice. I would expect the final, decoded, URL path of I'll look into this. |
This is now fixed in the latest furl v0.5.7. >>> from furl import furl
>>> furl('/some%2520path').url
'/some%2520path'
>>> furl('/some%252Bpath').url
'/some%252Bpath' Update with
Thank you, again, for bringing this issue to my attention Thomas. Don't hesitate |
I was expecting the original encoding to be preserved.
The text was updated successfully, but these errors were encountered: