From 93ae60629d770951836f4bd52b4e9e71d70779aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douglas=20Mendiz=C3=A1bal?= Date: Fri, 13 Mar 2015 15:20:18 -0500 Subject: [PATCH] Don't use tempest log Tempest has been updated to oslo_log so tempest.openstack.common.log is no longer available. Change-Id: I6163d5b2e0690fe6ff056f0bbd294552667ba8a6 --- functionaltests/client/base.py | 2 +- functionaltests/client/v1/behaviors/base_behaviors.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/functionaltests/client/base.py b/functionaltests/client/base.py index f8a9f6b7..e2284e61 100644 --- a/functionaltests/client/base.py +++ b/functionaltests/client/base.py @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ +import logging import os import oslotest.base as oslotest @@ -20,7 +21,6 @@ from barbicanclient import client from keystoneclient.auth import identity from keystoneclient import session from tempest import config -from tempest.openstack.common import log as logging CONF = config.CONF diff --git a/functionaltests/client/v1/behaviors/base_behaviors.py b/functionaltests/client/v1/behaviors/base_behaviors.py index 7237d922..b8a913e6 100644 --- a/functionaltests/client/v1/behaviors/base_behaviors.py +++ b/functionaltests/client/v1/behaviors/base_behaviors.py @@ -13,10 +13,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ +import logging import os -from tempest.openstack.common import log as logging - class BaseBehaviors(object):