From: Matt S Trout Date: Thu, 12 Jul 2012 13:28:48 +0000 (+0000) Subject: fix missing whitespace before ( X-Git-Tag: v0.9.7~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b079df6c417e2e015eb7f9625b514a2d9edacc3f;p=p5sagit%2FApp-FatPacker.git fix missing whitespace before ( --- diff --git a/lib/App/FatPacker/Trace.pm b/lib/App/FatPacker/Trace.pm index 526a318..470b4b0 100644 --- a/lib/App/FatPacker/Trace.pm +++ b/lib/App/FatPacker/Trace.pm @@ -8,7 +8,7 @@ my $trace_file; my %initial_inc; sub import { - my(undef, $file, @extras) = @_; + my (undef, $file, @extras) = @_; $trace_file = $file || '>>fatpacker.trace'; # For filtering out our own deps later. @@ -28,7 +28,7 @@ CHECK { open my $trace, $trace_file or die "Couldn't open $trace_file to trace to: $!"; - for my $inc(keys %INC) { + for my $inc (keys %INC) { next if exists $initial_inc{$inc}; print $trace "$inc\n"; }