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
This commit is contained in:
Tomas Sedovic
2012-03-20 11:19:01 +01:00
parent 49ed27480e
commit 1b44c7d46d

View File

@@ -22,7 +22,7 @@ import json
from heat.common.client import BaseClient from heat.common.client import BaseClient
from heat.common import crypt from heat.common import crypt
from heat.common import config from heat.common import config
from openstack.common import cfg from heat.openstack.common import cfg
from heat.cloudformations import * from heat.cloudformations import *