From 06c936d5adeaddf4c9a823c4800d00d485c6c212 Mon Sep 17 00:00:00 2001 From: Vladimir Kozhukalov Date: Tue, 7 Jul 2015 12:54:58 +0300 Subject: [PATCH] FA: oslo.serialization -> oslo_serialization The issue is that oslo log module tries to import oslo.serialization which is depricated. Correct way to import this is to use oslo_serialization module name. The correct way how to fix this would be installing oslo_log module instead of using log module from oslo-incubator. But this way is going to take long time because there are no corresponding rpm and deb packages available. TODO: use oslo_log instead of log module from oslo-incubator when rpm and deb packages are available Change-Id: I866fa0e19c5b872a82af6739d3537c24916bccc1 Closes-Bug: #1472018 --- fuel_agent/openstack/common/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuel_agent/openstack/common/log.py b/fuel_agent/openstack/common/log.py index ed06e361..b66794ba 100644 --- a/fuel_agent/openstack/common/log.py +++ b/fuel_agent/openstack/common/log.py @@ -38,7 +38,7 @@ import sys import traceback from oslo.config import cfg -from oslo.serialization import jsonutils +from oslo_serialization import jsonutils import six from six import moves