From 344120bfa3c9573819b87e59aa314dc01a9d24b6 Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Wed, 29 Jul 2015 15:17:46 +0100 Subject: [PATCH] Fix apache wsgi import The Oslo libraries have moved all of their code out of the 'oslo' namespace package into per-library packages. Seems we did forget the wsgi file. Change-Id: I8179655a2747f4e4f1e66127d040cb8d5c1aa498 Closes-Bug: #1479376 --- ironic/api/app.wsgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironic/api/app.wsgi b/ironic/api/app.wsgi index 60b2a1fb8e..2322631594 100644 --- a/ironic/api/app.wsgi +++ b/ironic/api/app.wsgi @@ -19,7 +19,7 @@ Use this file for deploying the API service under Apache2 mod_wsgi. from ironic.api import app from ironic.common import service -from oslo import i18n +import oslo_i18n as i18n i18n.install('ironic')