From 06e8a01247ba265f05d332801a0d625446a1083b Mon Sep 17 00:00:00 2001 From: Andreas Roussos Date: Mon, 14 Sep 2020 10:08:23 +0200 Subject: [PATCH] Bug 26451: fix typo in bulkmarcimport.pl bulkmarcimport.pl displays a small typo when a MARC modification template is being used: "modofication". This patch fixes that. Test plan: apply the patch, and confirm the script no longer displays the typo. Signed-off-by: Owen Leonard --- 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 6e9ea0b3ad..1c81f35e4c 100755 --- a/misc/migration_tools/bulkmarcimport.pl +++ b/misc/migration_tools/bulkmarcimport.pl @@ -140,7 +140,7 @@ if($marc_mod_template ne '') { if($marc_mod_template_id < 0) { die "Can't located MARC modification template '$marc_mod_template'\n"; } else { - print "Records will be modified using MARC modofication template: $marc_mod_template\n" if $verbose; + print "Records will be modified using MARC modification template: $marc_mod_template\n" if $verbose; } } -- 2.11.0