Skip to content

Commit

Permalink
typo fix in previous removed truncate filename
Browse files Browse the repository at this point in the history
Signed-off-by: Tiago Santana <[email protected]>
  • Loading branch information
SantanaTiago committed Jan 16, 2025
1 parent ab3e0f0 commit a19efc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepsearch/documents/core/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def download_converted_documents(
count = 1
for url in download_urls:
filename = Path(urllib.parse.urlparse(url).path).name
download_name = Path(os.path.join(result_dir))
download_name = Path(os.path.join(result_dir), filename)
download_url(url, download_name),
count += 1
progress.update(1)
Expand Down

0 comments on commit a19efc1

Please sign in to comment.