diff options
author | Daniel Friesel <derf@finalrewind.org> | 2015-06-19 15:30:18 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2015-06-19 15:30:18 +0200 |
commit | d5573d1d4ed6d193aee69956cc4403186a015e2f (patch) | |
tree | a8a862e55a99e2de8e0eb9158edd6e2a431e0dd1 /bin | |
parent | fddd2d516c9d4cbc2f2ed607934b30bcd8c197ed (diff) |
rename (sched|current)_info to (regular|current)_notes
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/efa | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -145,13 +145,13 @@ sub display_connection { $c->delay, $c->departure_stime, $c->arrival_stime ); } - for my $extra ( $c->sched_info ) { + for my $extra ( $c->regular_notes ) { if ( not( length $ignore_info and $extra =~ /$ignore_info/i ) ) { say "# $extra"; } } - for my $notice ( $c->current_info ) { + for my $notice ( $c->current_notes ) { if ( $notice->{subtitle} ne $notice->{subject} ) { printf( "# %s - %s\n", $notice->{subtitle}, $notice->{subject} ); } |