This hack dosn't play nice with the use MARC::File::XML ( BinaryEncoding => 'utf...
authorJason Etheridge <jason@esilibrary.com>
Thu, 11 Sep 2008 19:43:38 +0000 (19:43 +0000)
committerJason Etheridge <jason@esilibrary.com>
Thu, 11 Sep 2008 19:43:38 +0000 (19:43 +0000)
fingerprinter

index ecc14aa..231a8b2 100755 (executable)
@@ -22,10 +22,11 @@ binmode(XF, ':utf8');
 
 for my $file (@ARGV) {
     print XF "Processing $file\n";
-    open my $records, '<:utf8', $file;
+    #open my $records, '<:utf8', $file; # This hack dosn't play nice with the use MARC::File::XML ( BinaryEncoding => 'utf-8' ); hack
     my $batch = undef; my $record = undef;
 
-    $batch = MARC::Batch->new('XML', $records);
+    #$batch = MARC::Batch->new('XML', $records); # The other part of the hack
+    $batch = MARC::Batch->new('XML', $file);
     $batch->strict_off();
     $batch->warnings_off();