fix error message displayed if exception file cannot be opened
authorGalen Charlton <gmc@esilibrary.com>
Mon, 30 Jul 2012 18:47:37 +0000 (14:47 -0400)
committerGalen Charlton <gmc@esilibrary.com>
Mon, 30 Jul 2012 18:47:37 +0000 (14:47 -0400)
Signed-off-by: Galen Charlton <gmc@esilibrary.com>

fingerprinter

index a42efc1..03a67a1 100755 (executable)
@@ -34,7 +34,7 @@ $| = 1;
 initialize($conf);
 
 open OF, '>', $conf->{output} or die "$0: cannot open output file $conf->{output}: $!\n";
-open XF, '>', $conf->{exception} or die "$0: cannot open exception file $conf->{output}: $!\n";
+open XF, '>', $conf->{exception} or die "$0: cannot open exception file $conf->{exception}: $!\n";
 
 for my $file (@ARGV) {
     print XF "Processing $file\n";