Skip to content

Commit

Permalink
Merge pull request #537 from blueblots/keep-going-err
Browse files Browse the repository at this point in the history
Fixed error when ripping using `--keep-going` without specifying `--o…
  • Loading branch information
JoeLametta authored May 16, 2021
2 parents b6338b2 + 4d997bc commit 078d351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whipper/image/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def __init__(self, image, skipped_tracks=[]):
except KeyError:
logger.debug('Path not found; Checking '
'if %s is a skipped track', index.path)
if index.path in skipped_tracks:
if os.path.basename(index.path) in skipped_tracks:
logger.warning('Missing file %s due to skipped track',
index.path)
continue
Expand Down

0 comments on commit 078d351

Please sign in to comment.