From a203bc7861fa98862f6b887d07fe824d790e001b Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 6 Jan 2012 01:09:21 +0000 Subject: [PATCH] Commods: strip whitespace from ends of stall names in tsvs (!) --- yarrg/Commods.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/yarrg/Commods.pm b/yarrg/Commods.pm index f3ae56f..4267034 100644 --- a/yarrg/Commods.pm +++ b/yarrg/Commods.pm @@ -425,6 +425,7 @@ sub check_tsv_line ($$) { $l !~ m/\P{IsPrint}/ or &$bad_data('nonprinting char(s)'); my @v= split /\t/, $l, -1; @v==6 or &$bad_data('wrong number of fields'); + $v[1] =~ s/^\s+//; $v[1] =~ s/\s+$//; # ooo don't check :-( my ($commod,$stall) = @v; !keys %commods or -- 2.30.2