Changeset 24 in flacrip for trunk/lib/Ripper.pm
- Timestamp:
- 10/08/14 21:47:47 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Ripper.pm
r23 r24 12 12 has tracks => ( 13 13 is => 'rw', 14 handles => [qw{read_disc get_tracks get_cuesheet}],14 handles => [qw{read_disc has_tracks get_cuesheet}], 15 15 ); 16 16 … … 21 21 $self->read_disc($self->device); 22 22 23 die "No tracks found; is there a CD in the drive?\n" unless @{ $self->get_tracks };23 die "No tracks found; is there a CD in the drive?\n" unless $self->has_tracks; 24 24 25 25 my $tempdir = tempdir(CLEANUP => 1);
Note: See TracChangeset
for help on using the changeset viewer.