Fixed typo in Engine::HTTP warning message
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / HTTP.pm
1 package # Hide from PAUSE
2     Catalyst::Engine::HTTP;
3 use strict;
4 use warnings;
5
6 use base 'Catalyst::Engine';
7
8 warn("You are loading Catalyst::Engine::HTTP explicitly.
9
10 This is almost certainly a bad idea, as Catalyst::Engine::HTTP
11 has been removed in this version of Catalyst.
12
13 Please update your application's scripts with:
14
15   catalyst.pl -force -scripts MyApp
16
17 to update your scripts to not do this.\n") unless $ENV{HARNESS_ACTIVE};
18
19 1;
20
21 # This is here only as some old generated scripts require Catalyst::Engine::HTTP
22
23