View | Details | Raw Unified | Return to bug 36935
Collapse All | Expand All

(-)a/Koha/BackgroundJob/ImportKBARTFile.pm (-2 / +1 lines)
Lines 244-250 sub read_file { Link Here
244
244
245
    my ( $cde, $str, $pos ) = $csv->error_diag();
245
    my ( $cde, $str, $pos ) = $csv->error_diag();
246
    my $error = $cde ? "$cde, $str, $pos" : "";
246
    my $error = $cde ? "$cde, $str, $pos" : "";
247
    warn $error if $error;
247
    warn $error if $error && $cde ne '2012';
248
248
249
    close($fh);
249
    close($fh);
250
250
251
- 

Return to bug 36935