A while back a change was merged that moved
our shortcut for gettext out of __init__
(change here: If4125d6bcbde63df95de129ac5c83b4a6d6f130a)
This worked out fine for the most part but broke the sphinx doc
builder for a number of files. This patch just adds the proper
import to each of these files to get the builder working correctly
again.
Change-Id: Ifed20d309566be456c9519294714ccb45de76e00
Closes-Bug: #
1209406
from cinder.api.openstack import wsgi
from cinder.api.views import limits as limits_views
from cinder.api import xmlutil
+from cinder.openstack.common.gettextutils import _
from cinder.openstack.common import importutils
from cinder.openstack.common import jsonutils
from cinder import quota
from oslo.config import cfg
+from cinder.openstack.common.gettextutils import _
+
CONF = cfg.CONF
from oslo.config import cfg
import webob.exc
+from cinder.openstack.common.gettextutils import _
from cinder.openstack.common import log as logging
from cinder.openstack.common import processutils
from oslo.config import cfg
from cinder import exception
+from cinder.openstack.common.gettextutils import _
from cinder.openstack.common import policy
from cinder import utils