Fix issued with validation part

* fixed one implicit relative import (doesn't work on Python 3.x)
* remove using getLogger from oslo.log (removed everywhere else in
  previous CRs)

Change-Id: I4dc2d18ee89de0b088503233498b8f3df2c44b80
This commit is contained in:
Yuriy Taraday 2016-09-19 20:15:36 +03:00
parent 1c801a0568
commit b722dd7a28
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
from fuel_ccp.common import utils
from validation import service as service_validation
from fuel_ccp.validation import service as service_validation
def validate(components, types):

View File

@ -1,8 +1,8 @@
import copy
import logging
from fuel_ccp.validation import base as validation_base
import jsonschema
from oslo_log import log as logging
LOG = logging.getLogger(__name__)