diff options
author | Daniel Friesel <derf@finalrewind.org> | 2015-09-16 15:01:56 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2015-09-16 15:01:56 +0200 |
commit | 86ade9b0a956e25a201d56827e0b4935db036578 (patch) | |
tree | 77fb0c809c4fe45b4fcc85605efed8717b948058 /lib/Travel/Status | |
parent | 5d392e3d5ac766f0db3ca976023945fc14ee828c (diff) |
DeutscheBahn: Use correct service name
Diffstat (limited to 'lib/Travel/Status')
-rw-r--r-- | lib/Travel/Status/DE/DeutscheBahn.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Travel/Status/DE/DeutscheBahn.pm b/lib/Travel/Status/DE/DeutscheBahn.pm index edec8fe..bd85e56 100644 --- a/lib/Travel/Status/DE/DeutscheBahn.pm +++ b/lib/Travel/Status/DE/DeutscheBahn.pm @@ -11,7 +11,7 @@ our $VERSION = '1.05'; sub new { my ( $class, %opt ) = @_; - $opt{service} = 'deutschebahn'; + $opt{service} = 'DB'; return $class->SUPER::new(%opt); } |