remove space from dupe checking
[spider.git] / perl / Spot.pm
index e06c6cee156960d632781c44caed8b75385693c4..30c0b6270beaf05a2c159e326676fa3fa8753478 100644 (file)
@@ -215,7 +215,7 @@ sub dup
        chomp $text;
        $text = substr($text, 0, $duplth) if length $text > $duplth; 
        unpad($text);
-       $text =~ s/[^ a-zA-Z0-9]//g;
+       $text =~ s/[^a-zA-Z0-9]//g;
        my $dupkey = "X$freq|$call|$d|$text";
        return DXDupe::check($dupkey, $main::systime+$dupage);
 }