Add warning about missing files referenced in the cue sheet

This happens when a track fails to be ripped and gets skipped.

Signed-off-by: JoeLametta <JoeLametta@users.noreply.github.com>
This commit is contained in:
JoeLametta
2021-03-28 15:45:32 +00:00
parent 6505591462
commit c97f2ce547

View File

@@ -566,6 +566,9 @@ Log files will log the path to tracks relative to this directory.
self.program.write_m3u(discName)
if len(self.skipped_tracks) > 0:
logger.warning("the generated cue sheet references %d track(s) "
"which failed to rip so the associated file(s) "
"won't be available", len(self.skipped_tracks))
self.program.skipped_tracks = self.skipped_tracks
try: