For some reason, the core version and the cpan version got reversed.
Steve Peters [Tue, 24 Mar 2009 18:17:10 +0000 (13:17 -0500)]
Porting/corecpan.pl

index df2a70a..eb77fe1 100644 (file)
@@ -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";
            }