Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
DerouineauNicolas committed May 7, 2024
1 parent 9bf4b84 commit 26aa2ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/StreamServerApp/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def delete_video_related_assets(Video_input: Video) -> None:
if os.path.isdir(playlistdir):
logger.debug("removing directory: {}".format(playlistdir))
shutil.rmtree(playlistdir, ignore_errors=True)
logger.debug("removing audio ", Video_input.audio_path)
logger.debug("removing audio {}".format(Video_input.audio_path))
if os.path.isfile(Video_input.audio_path):
os.remove(Video_input.audio_path)
logger.debug("removing subtitles")
Expand Down

0 comments on commit 26aa2ed

Please sign in to comment.