From 2a3482b1c30a9988ec4c487ed0ff25d6a1b42855 Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Sun, 18 Apr 2010 18:44:48 -0500 Subject: [PATCH] fix bad capitalization --- app.psgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.psgi b/app.psgi index 09c4498e3..f57478db6 100644 --- a/app.psgi +++ b/app.psgi @@ -7,7 +7,7 @@ builder { my $first_app; for my $config_file (WebGUI::Paths->siteConfigs) { my $config = WebGUI::Config->new($config_file); - my $psgi = $config->get('psgiFile') || WebGUI::Paths->defaultPsgi; + my $psgi = $config->get('psgiFile') || WebGUI::Paths->defaultPSGI; my $app = do { $ENV{WEBGUI_CONFIG} = $config_file; Plack::Util::load_psgi($psgi);