From 1bb27933583f9935ad8ad4c6606522d2a9386c28 Mon Sep 17 00:00:00 2001 From: Robert Helmer Date: Tue, 9 Oct 2012 22:20:58 -0700 Subject: [PATCH] bug 798152 - include lib64 dir too. we should do something different here - funfactory should do this, or we should build it differently perhaps --- wsgi/socorro-crashstats.wsgi | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wsgi/socorro-crashstats.wsgi b/wsgi/socorro-crashstats.wsgi index 65ff247..e26c516 100644 --- a/wsgi/socorro-crashstats.wsgi +++ b/wsgi/socorro-crashstats.wsgi @@ -8,5 +8,9 @@ site.addsitedir(os.path.abspath(os.path.join(wsgidir, '../'))) # manage adds /apps, /lib, and /vendor to the Python path. import manage +# FIXME funfactory should add this too +site.addsitedir(os.path.abspath( + os.path.join(wsgidir, '../vendor-local/lib64/python'))) + import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler()