https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339
--- Comment #2 from Jonathan Druart <[email protected]> --- The error can easily be recreated redoing what does the QA script my @files = qw( Koha/REST/V1/ERM/Agreements.pm Koha/REST/V1/ERM/EHoldings/Titles/Local.pm Koha/REST/V1/ERM/EHoldings/Packages.pm Koha/REST/V1/ERM/Licenses.pm Koha/REST/V1/ERM/EHoldings/Titles/EBSCO.pm Koha/REST/V1/ERM/EHoldings/Packages/Local.pm ); for my $file (@files) { next if $file !~ m|\.pm$|; my $module = $file; delete $INC{$module}; $module =~ s|/|::|g; $module =~ s|\.pm$||; eval "require $module"; $module->import; } This appears before and after the patch. Should not be blocker. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
