mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-03-09 12:50:23 -05:00
(merge conflict resolution) don't pass the dot to replace_extension
This commit is contained in:
parent
7316fc5703
commit
b3f1ef087a
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ def determine_filepath(self, info_dict, relevant_dict, output_file_type):
|
|||
else:
|
||||
desired_extension = Path(current_filepath).suffix
|
||||
|
||||
return current_filepath, replace_extension(prepared_filepath, desired_extension)
|
||||
return current_filepath, replace_extension(prepared_filepath, desired_extension[1:])
|
||||
|
||||
def move_file(self, info_dict, current_filepath, final_filepath):
|
||||
if not current_filepath or not final_filepath:
|
||||
|
|
Loading…
Reference in a new issue