diff options
author | Daniel Friesel <derf@finalrewind.org> | 2015-05-10 18:34:18 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2015-05-10 18:34:18 +0200 |
commit | 723744f9fcbd96a28c294d8f59aa81034282e983 (patch) | |
tree | 3ae6f6e94f9560a19d27d3f3eee137ce9fa4af10 /bin | |
parent | 3b1131edfaacb2a07a3d92cdea57d48ce2403b79 (diff) |
efa: Fix typo in NoData exception message (RT #104335)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/efa | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ sub handle_efa_exception { exit 2; } if ( $e->isa('Travel::Routing::DE::EFA::Exception::NoData') ) { - printf STDERR ( "Backend rror: %s\n", $e->description ); + printf STDERR ( "Backend error: %s\n", $e->description ); exit 3; } if ( $e->isa('Travel::Routing::DE::EFA::Exception::Ambiguous') ) { |