From: Steve Baker Date: Wed, 7 Aug 2013 23:20:48 +0000 (+1200) Subject: Add missing _ imports to allow doc generation X-Git-Tag: 2014.1~259^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=0453785f3f7b2a578b433cb0544394aac9bcfb95;p=openstack-build%2Fheat-build.git Add missing _ imports to allow doc generation Fixes bug: 1209413 Change-Id: I7d405ceb6a500cbb3d0eb19e85cb0540564e0643 --- diff --git a/heat/common/config.py b/heat/common/config.py index ab07ed29..36e14184 100644 --- a/heat/common/config.py +++ b/heat/common/config.py @@ -26,6 +26,7 @@ from oslo.config import cfg from heat.common import wsgi +from heat.openstack.common.gettextutils import _ from heat.openstack.common import log as logging from heat.openstack.common import rpc diff --git a/heat/common/exception.py b/heat/common/exception.py index 4f0c0815..567219b9 100644 --- a/heat/common/exception.py +++ b/heat/common/exception.py @@ -21,6 +21,7 @@ import functools import urlparse import sys from heat.openstack.common import exception +from heat.openstack.common.gettextutils import _ OpenstackException = exception.OpenstackException diff --git a/heat/common/wsgi.py b/heat/common/wsgi.py index 6d047451..14e80db2 100644 --- a/heat/common/wsgi.py +++ b/heat/common/wsgi.py @@ -45,6 +45,7 @@ import webob.exc from heat.common import exception from heat.openstack.common import gettextutils +from heat.openstack.common.gettextutils import _ from heat.openstack.common import importutils