diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-08-03 13:18:00 -0700 |
---|---|---|
committer | Ross Brattain <ross.b.brattain@intel.com> | 2017-08-03 13:20:00 -0700 |
commit | 72778951d6b8968f562fb8fefa02a57159ea1b83 (patch) | |
tree | 5866cc1bc65314ab0eff386da9c64916eadb5309 | |
parent | 4d36bbf0990fc6ddb59092dd8bd7f985392907cb (diff) |
fix heatclient import
for some reason, maybe apexlake, we didn't do the correct import
we need to import heatclient.client directly
Change-Id: I682c88ae780845adb0b5aa898390697197e3af5d
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
-rw-r--r-- | yardstick/orchestrator/heat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/orchestrator/heat.py b/yardstick/orchestrator/heat.py index beb63b421..bf6593d45 100644 --- a/yardstick/orchestrator/heat.py +++ b/yardstick/orchestrator/heat.py @@ -21,7 +21,7 @@ import logging import socket import time -import heatclient +import heatclient.client import pkg_resources from oslo_utils import encodeutils |