handle urls with special characters properly

This commit is contained in:
Nick Sweeting 2019-03-30 22:25:10 -04:00
parent 6a8f6f52af
commit 97249a1861
5 changed files with 22 additions and 22 deletions

View file

@ -309,7 +309,7 @@ def wget_output_path(link: Link) -> Optional[str]:
search_dir = os.path.join(
link.link_dir,
domain(link.url),
full_path,
urldecode(full_path),
)
for _ in range(4):