diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-10-22 18:51:26 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-10-22 18:51:26 +0200 |
commit | 432914cb6c20b31621933fe4198dbac73b92ed5c (patch) | |
tree | e92817b09043dad52c08e967eaa8355c6d6c91f6 | |
parent | 27ff6427494f3d84a0c423563dc72e4413ad08d3 (diff) |
Shorten cancellation annotations
-rwxr-xr-x | bin/db-iris | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/db-iris b/bin/db-iris index f047699..f8512da 100755 --- a/bin/db-iris +++ b/bin/db-iris @@ -284,10 +284,10 @@ sub format_delay { $delay = ( $d->delay > 0 ? ' +' : q{ } ) . $d->delay; } if ( $d->is_cancelled ) { - $delay = ' CANCELED'; + $delay = ' XXX'; } elsif ( $d->departure_is_cancelled ) { - $delay .= ' ⊖'; + $delay .= ' xxx'; } elsif ( $d->start < $datetime and not $d->has_realtime ) { $delay = ' ?'; |