From 0453785f3f7b2a578b433cb0544394aac9bcfb95 Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Thu, 8 Aug 2013 11:20:48 +1200 Subject: [PATCH] Add missing _ imports to allow doc generation Fixes bug: 1209413 Change-Id: I7d405ceb6a500cbb3d0eb19e85cb0540564e0643 --- heat/common/config.py | 1 + heat/common/exception.py | 1 + heat/common/wsgi.py | 1 + 3 files changed, 3 insertions(+) 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 -- 2.45.2