diff options
Diffstat (limited to 'bin/hafas')
-rwxr-xr-x | bin/hafas | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -170,7 +170,9 @@ sub parse_mot_options { my @mots = @{ $desc->{productbits} }; for my $mot ( @{ $desc->{productbits} } ) { if ( ref($mot) eq 'ARRAY' ) { - printf( "%-10s %s\n", @{$mot} ); + if ( $mot->[0] ne '_' ) { + printf( "%-10s %s\n", @{$mot} ); + } } else { say $mot; |