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
This commit is contained in:
Vladimir Kozhukalov 2015-07-07 12:54:58 +03:00
parent fe00c365d1
commit 06c936d5ad
1 changed files with 1 additions and 1 deletions

View File

@ -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