Remove .html from JSON output

This commit is contained in:
2021-10-29 02:13:51 +02:00
parent 578c6eb525
commit f18e946bac

View File

@ -160,13 +160,13 @@ def generate_html(
</head> </head>
</html> </html>
""" """
html_url = f"{domain}{filename}"
filename += ".html" filename += ".html"
with open(f"Uploads/{filename}", "w", encoding="utf-8") as file: with open(f"Uploads/{filename}", "w", encoding="utf-8") as file:
file.write(video_html) file.write(video_html)
return f"{domain}{filename}" return html_url
def find_video_resolution(path_to_video: str) -> tuple[int, int]: def find_video_resolution(path_to_video: str) -> tuple[int, int]: