diff options
-rw-r--r-- | Changelog | 1 | ||||
-rwxr-xr-x | bin/efa-m | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,7 @@ git HEAD * Add --platform / --line options to filter output + * Align times properly if departure list contains a daychange Travel::Status::DE::VRR 0.01 - Sun Sep 11 2011 @@ -87,7 +87,10 @@ sub display_result { } printf( - join( q{ }, ( map { "%-${_}s" } @line_length ) ) . "\n", + join( q{ }, + "%${line_length[0]}s", + ( map { "%-${_}s" } @line_length[ 1, -1 ] ) ) + . "\n", @{$line}[ 0 .. 3 ] ); } |