~ubuntu-branches/ubuntu/wily/heat/wily

« back to all changes in this revision

Viewing changes to heat/engine/clients/__init__.py

  • Committer: Package Import Robot
  • Author(s): Corey Bryant
  • Date: 2015-08-19 08:11:50 UTC
  • mfrom: (1.1.27)
  • Revision ID: package-import@ubuntu.com-20150819081150-m969fd35xn8bdmfu
Tags: 1:5.0.0~b2-0ubuntu1
* New upstream milestone for OpenStack Liberty.
* d/control: Align (build-)depends with upstream.
* d/p/fix-requirements.patch: Dropped. No longer needed.
* d/p/fixup-assert-regex.patch: Rebased.
* d/rules: Remove .eggs directory in override_dh_auto_clean.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
from stevedore import enabled
19
19
 
20
20
from heat.common import exception
21
 
from heat.common.i18n import _LE
 
21
from heat.common.i18n import _
22
22
from heat.common.i18n import _LW
23
23
 
24
24
LOG = logging.getLogger(__name__)
90
90
                return importutils.import_object(cfg.CONF.cloud_backend,
91
91
                                                 context)
92
92
            except (ImportError, RuntimeError) as err:
93
 
                msg = _LE('Invalid cloud_backend setting in heat.conf '
94
 
                          'detected  - %s') % six.text_type(err)
 
93
                msg = _('Invalid cloud_backend setting in heat.conf '
 
94
                        'detected  - %s') % six.text_type(err)
95
95
                LOG.error(msg)
96
96
                raise exception.Invalid(reason=msg)
97
97