Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3080c05

Browse files
authoredOct 2, 2024··
Update fetch_anime_and_play.py
1 parent 3623fbc commit 3080c05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎web_programming/fetch_anime_and_play.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def download_video(download_url: str, output_filename: str):
202202
.lower()
203203
)
204204
if download_choice in ["yes", "y"]:
205-
output_filename = f"{chosen_anime['title']} - {chosen_episode['title']}.mp4" # Change extension as needed
205+
output_filename = f"{chosen_episode['title']}.mp4" # Change extension as needed
206206
download_video(download_url, output_filename)
207207
print(
208208
f"{chosen_episode['title']} has been downloaded as {output_filename}."

0 commit comments

Comments
 (0)
Please sign in to comment.