Skip to content

Commit

Permalink
Merge pull request #418 from mtdcr/fix-less-than-ten
Browse files Browse the repository at this point in the history
Fix ripping discs with less than ten tracks
  • Loading branch information
JoeLametta authored Oct 21, 2019
2 parents 2e966a4 + abf9a97 commit 8b6b2d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whipper/program/cdrdao.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
_CRC_RE = re.compile(
r"Found (?P<channels>[0-9]*) Q sub-channels with CRC errors")
_BEGIN_CDRDAO_RE = re.compile(r"-" * 60)
_LAST_TRACK_RE = re.compile(r"^(?P<track>[0-9]*)")
_LAST_TRACK_RE = re.compile(r"^[ ]?(?P<track>[0-9]*)")
_LEADOUT_RE = re.compile(
r"^Leadout AUDIO\s*[0-9]\s*[0-9]*:[0-9]*:[0-9]*\([0-9]*\)")

Expand Down

0 comments on commit 8b6b2d3

Please sign in to comment.