diff options
| author | Luc Donnet | 2018-03-19 15:33:54 +0100 |
|---|---|---|
| committer | Luc Donnet | 2018-03-23 17:21:56 +0100 |
| commit | c427aa354acacb7fc31b90a437af5babec99b93b (patch) | |
| tree | da57d5786028614e1861e93d621d746683594ec2 | |
| parent | 7f6142c5786994a611bbf4ea654e4f1a992112ab (diff) | |
| download | chouette-core-c427aa354acacb7fc31b90a437af5babec99b93b.tar.bz2 | |
Fix typo for Import class Refs #6243
| -rw-r--r-- | lib/tasks/imports.rake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/tasks/imports.rake b/lib/tasks/imports.rake index 7162f2ada..d393ab156 100644 --- a/lib/tasks/imports.rake +++ b/lib/tasks/imports.rake @@ -3,13 +3,13 @@ require 'tasks/helpers/simple_interfaces' namespace :import do desc "Notify parent imports when children finish" - task notify_parent: :environment do - ParentNotifier.new(Import).notify_when_finished + task notify_parent: :environment do + ParentNotifier.new(Import::Base).notify_when_finished end desc "Mark old unfinished Netex imports as 'aborted'" task netex_abort_old: :environment do - NetexImport.abort_old + Import::Netex.abort_old end desc "import the given file with the corresponding importer" |
