From 3a971d5bdb06b58d7d7177ddcaa9134130922b30 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 15 Sep 2023 13:00:54 -0400 Subject: [PATCH] Bug 33958: (QA follow-up) tidy normalized_oclc Signed-off-by: Kyle M Hall --- Koha/Biblio.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index a82fc01d127..46f96df61c1 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -1303,9 +1303,9 @@ Normalizes and returns the OCLC number found in the MARC record. =cut sub normalized_oclc { - my ( $self ) = @_; + my ($self) = @_; my $marc_record = $self->metadata->record; - return C4::Koha::GetNormalizedOCLCNumber( $marc_record ); + return C4::Koha::GetNormalizedOCLCNumber($marc_record); } =head3 to_api -- 2.30.2