From: Steve Peters Date: Tue, 24 Mar 2009 18:17:10 +0000 (-0500) Subject: For some reason, the core version and the cpan version got reversed. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2d373db1171ead2bd9f470f98a3c73d12966b508;p=p5sagit%2Fp5-mst-13.2.git For some reason, the core version and the cpan version got reversed. --- diff --git a/Porting/corecpan.pl b/Porting/corecpan.pl index df2a70a..eb77fe1 100644 --- a/Porting/corecpan.pl +++ b/Porting/corecpan.pl @@ -148,7 +148,7 @@ else { for my $dist (sort keys %results) { print "Module $dist...\n"; for my $file (sort keys %{$results{$dist}}) { - my ($vcpan, $vcore) = @{$results{$dist}{$file}}{@labels}; + my ($vcore, $vcpan) = @{$results{$dist}{$file}}{@labels}; if (our $opt_v or $vcore ne $vcpan) { print " $file: core=$vcore, cpan=$vcpan\n"; }