diff options
author | Daniel Friesel <derf@finalrewind.org> | 2015-10-12 13:33:09 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2015-10-12 13:33:09 +0200 |
commit | d64dec80bc37609090b3f1ba3b253da5ed3c9bde (patch) | |
tree | 95ec34efa11a4e98ea904d389c03826008185b36 /bin/aseag-m | |
parent | 7a0cd968db022c830026898989146fcc2f1eb617 (diff) |
return stop objects in route_interesting too
Diffstat (limited to 'bin/aseag-m')
-rwxr-xr-x | bin/aseag-m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/aseag-m b/bin/aseag-m index 41bd188..86ed39a 100755 --- a/bin/aseag-m +++ b/bin/aseag-m @@ -209,7 +209,7 @@ sub show_results { } if ( $edata{route_interesting} ) { - $line[2] = join( q{ }, $d->route_interesting ); + $line[2] = join( q{ }, map { $_->name } $d->route_interesting ); } push( @output, \@line ); |