diff options
| author | Luc Donnet | 2018-03-19 15:33:54 +0100 | 
|---|---|---|
| committer | Luc Donnet | 2018-03-19 15:33:54 +0100 | 
| commit | 7889ea3f2e8051140b703a88ee9ea6194f5bf3f7 (patch) | |
| tree | 58e40385a92c0b77c461171b00675ea92728b1f3 /lib/tasks/imports.rake | |
| parent | 176149726e5292568bec9d0d02bf3370fa2fb7a3 (diff) | |
| download | chouette-core-7889ea3f2e8051140b703a88ee9ea6194f5bf3f7.tar.bz2 | |
Fix typo for Import class Refs #6243
Diffstat (limited to 'lib/tasks/imports.rake')
| -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" | 
