From: Shawn Boyette Date: Wed, 19 Nov 2008 18:29:37 +0000 (+0000) Subject: '0000' -> 0 X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=d478b47d3998baa905f245e8e05faf83bc314069 '0000' -> 0 --- diff --git a/fingerprinter b/fingerprinter index ef5a293..7b20e3e 100755 --- a/fingerprinter +++ b/fingerprinter @@ -245,7 +245,7 @@ sub score_marc { my @tags = $record->field('650'); push @score, scalar @tags; } else { - push @score, '0000'; + push @score, 0; } }