import re
from heat.openstack.common import log as logging
+from heat.openstack.common.gettextutils import _
from heat.common import wsgi
import heat.openstack.common.rpc.common as rpc_common
from heat.openstack.common import log as logging
+from heat.openstack.common.gettextutils import _
logger = logging.getLogger(__name__)
from heat.common import identifier
+from heat.openstack.common.gettextutils import _
+
def tenant_local(handler):
'''
from heat.common import exception
+from heat.openstack.common.gettextutils import _
+
class BaseStrategy(object):
def __init__(self):
self.check_auth_params()
auth_url = self.creds['auth_url']
- for _ in range(self.MAX_REDIRECTS):
+ for x in range(self.MAX_REDIRECTS):
try:
_authenticate(auth_url)
except exception.AuthorizationRedirect as e:
from heat.common import exception
from heat.common import utils
+from heat.openstack.common.gettextutils import _
+
# common chunk size for get and put
CHUNKSIZE = 65536
import types
from heat.openstack.common import log as logging
+from heat.openstack.common.gettextutils import _
logger = logging.getLogger(__name__)
from oslo.config import cfg
from heat.common import exception
+
import heat.openstack.common.log as logging
from heat.openstack.common import policy
+from heat.openstack.common.gettextutils import _
logger = logging.getLogger(__name__)
import urlparse
from heat.openstack.common import log as logging
+from heat.openstack.common.gettextutils import _
logger = logging.getLogger(__name__)
from heat.common import exception
from heat.openstack.common import importutils
+from heat.openstack.common.gettextutils import _
URL_LENGTH_LIMIT = 50000
from migrate.versioning import util as migrate_util
from heat.openstack.common import exception
+from heat.openstack.common.gettextutils import _
_REPOSITORY = None
from heat.common import exception
+from heat.openstack.common.gettextutils import _
+
class CircularDependencyException(exception.OpenstackException):
message = _("Circular Dependency Found: %(cycle)s")
from heat.db import api as db_api
from heat.openstack.common import log as logging
+from heat.openstack.common.gettextutils import _
+
from heat.common.exception import ServerError
from heat.common.exception import StackValidationFailed
from heat.engine.properties import Properties
from heat.openstack.common import log as logging
+from heat.openstack.common.gettextutils import _
logger = logging.getLogger(__name__)
# License for the specific language governing permissions and limitations
# under the License.
from heat.openstack.common import log as logging
+from heat.openstack.common.gettextutils import _
logger = logging.getLogger(__name__)
from heat.openstack.common import excutils
from heat.openstack.common import log as logging
+from heat.openstack.common.gettextutils import _
logger = logging.getLogger(__name__)