diff options
Diffstat (limited to 'bin/hafas-m')
-rwxr-xr-x | bin/hafas-m | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/bin/hafas-m b/bin/hafas-m index 980bae2..faa2a90 100755 --- a/bin/hafas-m +++ b/bin/hafas-m @@ -308,16 +308,16 @@ elsif ( $opt{journey} ) { for my $stop ( $result->route ) { printf( "%5s %s %5s %5s %1s%1s %s%s\n", - $stop->{arr_cancelled} ? '--:--' - : ( $stop->{arr} ? $stop->{arr}->strftime('%H:%M') : q{} ), - ( $stop->{arr} and $stop->{dep} ) ? '→' : q{ }, - $stop->{dep_cancelled} ? '--:--' - : ( $stop->{dep} ? $stop->{dep}->strftime('%H:%M') : q{} ), - $stop->{delay} ? sprintf( '(%+d)', $stop->{delay} ) : q{}, - display_occupancy( $stop->{load}{FIRST} ), - display_occupancy( $stop->{load}{SECOND} ), - $stop->{name}, - $stop->{direction} ? sprintf( ' → %s', $stop->{direction} ) : q{} + $stop->arr_cancelled ? '--:--' + : ( $stop->arr ? $stop->arr->strftime('%H:%M') : q{} ), + ( $stop->arr and $stop->dep ) ? '→' : q{ }, + $stop->dep_cancelled ? '--:--' + : ( $stop->dep ? $stop->dep->strftime('%H:%M') : q{} ), + $stop->delay ? sprintf( '(%+d)', $stop->delay ) : q{}, + display_occupancy( $stop->load->{FIRST} ), + display_occupancy( $stop->load->{SECOND} ), + $stop->name, + $stop->direction ? sprintf( ' → %s', $stop->direction ) : q{} ); } |