From 84a448e07c7f3b3aa51d562e2f6719249950c920 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Thu, 11 Jun 2015 16:28:26 -0400 Subject: [PATCH] Full namespace when importing dashboard Otherwise, Apache is not happy when using a WSGIScriptAlias: Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/stackalytics/dashboard/web.wsgi", line 23, in from dashboard.web import app as application ImportError: No module named dashboard.web Change-Id: I94eceaafaff541b004900973768f0cc5927b4297 Signed-off-by: Paul Belanger --- stackalytics/dashboard/web.wsgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stackalytics/dashboard/web.wsgi b/stackalytics/dashboard/web.wsgi index 3ccdd21af..d4fd174e5 100644 --- a/stackalytics/dashboard/web.wsgi +++ b/stackalytics/dashboard/web.wsgi @@ -13,4 +13,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -from dashboard.web import app as application +from stackalytics.dashboard.web import app as application