diff --git a/whipper/program/cdrdao.py b/whipper/program/cdrdao.py index f59ed38..9b36ada 100644 --- a/whipper/program/cdrdao.py +++ b/whipper/program/cdrdao.py @@ -19,7 +19,7 @@ _TRACK_RE = re.compile(r"^Analyzing track (?P[0-9]*) \(AUDIO\): start (?P _CRC_RE = re.compile( r"Found (?P[0-9]*) Q sub-channels with CRC errors") _BEGIN_CDRDAO_RE = re.compile(r"-" * 60) -_LAST_TRACK_RE = re.compile(r"^(?P[0-9]*)") +_LAST_TRACK_RE = re.compile(r"^[ ]?(?P[0-9]*)") _LEADOUT_RE = re.compile( r"^Leadout AUDIO\s*[0-9]\s*[0-9]*:[0-9]*:[0-9]*\([0-9]*\)")