summaryrefslogtreecommitdiff
path: root/bin/db-iris
diff options
context:
space:
mode:
Diffstat (limited to 'bin/db-iris')
-rwxr-xr-xbin/db-iris3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/db-iris b/bin/db-iris
index 298c792..90368ca 100755
--- a/bin/db-iris
+++ b/bin/db-iris
@@ -153,7 +153,8 @@ sub get_station {
else {
say STDERR "The input '$input_name' is ambiguous. Please choose one "
. 'of the following:';
- say STDERR join( "\n", map { $_->[1] } @stations );
+ say STDERR
+ join( "\n", map { $_->[1] . ' (' . $_->[0] . ')' } @stations );
exit(1);
}
}