diff options
Diffstat (limited to 'bin/efa')
-rwxr-xr-x | bin/efa | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,8 +6,8 @@ use strict; use warnings; use 5.010; +use Net::Travel::DE::VRR; use Getopt::Long qw/:config no_ignore_case/; -use WWW::Efa; our $VERSION = '1.3'; my $ignore_info = 'Fahrradmitnahme'; @@ -78,7 +78,7 @@ for my $pair ( [ \@from, \$from_type ], [ \@via, \$via_type ], } } -$efa = WWW::Efa->new( +$efa = Net::Travel::DE::VRR->new( from => [ @from, $from_type ], to => [ @to, $to_type ], via => ( @via ? [ @via, $via_type ] : undef ), |