From 33e95ea3b903b3ec75305a96f37d1954feb4e0b1 Mon Sep 17 00:00:00 2001 From: Vitor FERNANDES Date: Mon, 26 Nov 2012 11:23:15 +0000 Subject: [PATCH] Bug 9144 - bulkmarcimport.pl - Problem identifying errors Replace \r with \n for newline in output for bulkmarcimport.pl Signed-off-by: Kyle M Hall Signed-off-by: Paul Poulain Signed-off-by: Jared Camins-Esakov --- misc/migration_tools/bulkmarcimport.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/migration_tools/bulkmarcimport.pl b/misc/migration_tools/bulkmarcimport.pl index 894138d0f9..e0f905c91f 100755 --- a/misc/migration_tools/bulkmarcimport.pl +++ b/misc/migration_tools/bulkmarcimport.pl @@ -187,7 +187,7 @@ RECORD: while ( ) { last unless ( $record ); $i++; print "."; - print "\r$i" unless $i % 100; + print "\n$i" unless $i % 100; # transcode the record to UTF8 if needed & applicable. if ($record->encoding() eq 'MARC-8' and not $skip_marc8_conversion) { -- 2.39.2