From 1b44c7d46d8b0645f0368dad4938a55c5e6935e1 Mon Sep 17 00:00:00 2001 From: Tomas Sedovic Date: Tue, 20 Mar 2012 11:19:01 +0100 Subject: [PATCH] Fix a module import failure Running heat-api resulted in: heat.common.exception.ImportFailure: Failed to import requested object/class: 'heat.api.v1.API'. Reason: No module named openstack.common --- heat/engine/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/engine/client.py b/heat/engine/client.py index ca3073dd2c..76ec44de5a 100644 --- a/heat/engine/client.py +++ b/heat/engine/client.py @@ -22,7 +22,7 @@ import json from heat.common.client import BaseClient from heat.common import crypt from heat.common import config -from openstack.common import cfg +from heat.openstack.common import cfg from heat.cloudformations import *