Skip to content

Commit

Permalink
fixed the typo in PLACK_ENV warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Sep 9, 2010
1 parent 3177b1f commit 7e234a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Plack/Loader.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ sub auto {
} catch {
warn "Autoloading '$backend' backend failed. Falling back to the Standalone. ",
"(You might need to install Plack::Handler::$backend from CPAN. Caught error was: $_)\n"
if $ENV{PLACK_DEV} && $ENV{PLACK_DEV} eq 'development';
if $ENV{PLACK_ENV} && $ENV{PLACK_ENV} eq 'development';
$class->load('Standalone' => @args);
};

Expand Down

0 comments on commit 7e234a5

Please sign in to comment.