]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Add missing _ imports to allow doc generation
authorSteve Baker <sbaker@redhat.com>
Wed, 7 Aug 2013 23:20:48 +0000 (11:20 +1200)
committerSteve Baker <sbaker@redhat.com>
Wed, 7 Aug 2013 23:20:48 +0000 (11:20 +1200)
Fixes bug: 1209413

Change-Id: I7d405ceb6a500cbb3d0eb19e85cb0540564e0643

heat/common/config.py
heat/common/exception.py
heat/common/wsgi.py

index ab07ed2928d421b264794c09336722f47b4efdc9..36e14184915ebf0c6cabb01a9e947887e35395a1 100644 (file)
@@ -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
 
index 4f0c08153082fe03fe061e8dd0a9bd45efdbab42..567219b92a66661407a7d860e8fc0a12708bd103 100644 (file)
@@ -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
index 6d047451624a578410525c8ae5b1fd0d4ae0474c..14e80db23f06886ca591b81deb1c6185353d2b30 100644 (file)
@@ -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