minor fix
Browse files- App/Worker.py +1 -3
App/Worker.py
CHANGED
@@ -246,9 +246,7 @@ def download_assets(links: List[LinkInfo], temp_dir: str):
|
|
246 |
file_link = link.link
|
247 |
file_name = link.file_name
|
248 |
# Write each link to the file in the format required by aria2c
|
249 |
-
links_file.write(
|
250 |
-
f"{file_link}\n out={os.path.join(public_dir, file_name)}\n"
|
251 |
-
)
|
252 |
download_with_wget(links_file_path=links_file_path, download_dir=public_dir)
|
253 |
|
254 |
|
|
|
246 |
file_link = link.link
|
247 |
file_name = link.file_name
|
248 |
# Write each link to the file in the format required by aria2c
|
249 |
+
links_file.write(f"{file_link}\n out={file_name}\n")
|
|
|
|
|
250 |
download_with_wget(links_file_path=links_file_path, download_dir=public_dir)
|
251 |
|
252 |
|