It's only used by the database code.
Change-Id: Icd81fdb950b84bcbd365dd80f701a4992f695ea7
Signed-off-by: Zane Bitter <zbitter@redhat.com>
The underlying driver is loaded . SQLAlchemy is currently the only
supported backend.
'''
-import heat.utils
+from heat.db import utils
from heat.openstack.common import cfg
help='The backend to use for db'),
]
-IMPL = heat.utils.LazyPluggable('db_backend',
+IMPL = utils.LazyPluggable('db_backend',
sqlalchemy='heat.db.sqlalchemy.api')
"""Database setup and migration commands."""
-from heat import utils
+from heat.db import utils
IMPL = utils.LazyPluggable('db_backend',
from glance import client as glance_client
from novaclient.v1_1 import client as nova_client
import heat
-from heat import utils
from heat.common import template_format
from heat.engine import parser
from heat import client as heat_client