From: Ian Jackson Date: Sun, 3 Apr 2016 21:37:37 +0000 (+0100) Subject: Commods (upload): report hex ord of nonprinting characters when rejecting X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.web-test.git;a=commitdiff_plain;h=6dd8d650dfc26d113119c3566747d35855834146 Commods (upload): report hex ord of nonprinting characters when rejecting --- diff --git a/yarrg/Commods.pm b/yarrg/Commods.pm index 4267034..48caf79 100644 --- a/yarrg/Commods.pm +++ b/yarrg/Commods.pm @@ -422,7 +422,7 @@ sub check_tsv_line ($$) { chomp($l) or &$bad_data('missing end-of-line'); - $l !~ m/\P{IsPrint}/ or &$bad_data('nonprinting char(s)'); + $l !~ m/\P{IsPrint}/ or &$bad_data('nonprinting char(s) '.sprintf "%#x", ord $&); 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 :-(