fix app.psgi pointing to an incorrect location for the app's lib

This commit is contained in:
Matthew Connelly 2015-11-15 23:36:18 +00:00
parent ee204b6686
commit 52972a677f
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/../lib";
use lib "$FindBin::Bin/lib";
use App::BlogAlba;