From 6935c883d1b6968db6980df77fbfda1e12209d40 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Fri, 27 Apr 2012 16:29:10 +1000 Subject: [PATCH] only report different text if not in EXCLUDED --- util/check-pullups.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/check-pullups.pl b/util/check-pullups.pl index dffa5fc592..c8ae8af6ee 100644 --- a/util/check-pullups.pl +++ b/util/check-pullups.pl @@ -87,7 +87,7 @@ foreach my $c (sort {$a <=> $b} keys %$c1) { print $c1->{$c}->{text}; } if (exists($c2->{$c}) && $category ne "placeholder" && - $c2->{$c}->{text} ne $text) { + $c2->{$c}->{text} ne $text && !exists($c3->{$c})) { if ($msg ne "TEXT\n") { $msg = "TEXT\n"; print $msg;