From: Galen Charlton Date: Mon, 30 Jul 2012 18:47:37 +0000 (-0400) Subject: fix error message displayed if exception file cannot be opened X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=8e801f719eab16991179f1cae4ad5cd330b612c6 fix error message displayed if exception file cannot be opened Signed-off-by: Galen Charlton --- diff --git a/fingerprinter b/fingerprinter index a42efc1..03a67a1 100755 --- a/fingerprinter +++ b/fingerprinter @@ -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";