Commit 25c47840 authored by Antoine Catton's avatar Antoine Catton

Minor: strip slashes on urlparse_ recipe

parent 39d8d005
......@@ -43,7 +43,7 @@ class Recipe(GenericBaseRecipe):
password=to_str(url.password),
host=to_str(url.hostname),
port=to_str(url.port),
path=url.path,
path=url.path.strip('/'),
params=url.params,
query=url.query,
fragment=url.fragment)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment