From: maopengzhang Date: Tue, 16 Jul 2019 05:53:43 +0000 (+0800) Subject: resolve python2->python3 issues X-Git-Tag: 1.3.4~11 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=ab7a826c34cecd214dd581293d7d7970b41a0a56;p=vfc%2Fnfvo%2Fcatalog.git resolve python2->python3 issues from . import connection Change-Id: Ib010cbd042630e3030f5c64686b5daf3c89f282b Issue-ID: VFC-1429 Signed-off-by: maopengzhang --- diff --git a/catalog/pub/redisco/containers.py b/catalog/pub/redisco/containers.py index 89572940..d30c227f 100644 --- a/catalog/pub/redisco/containers.py +++ b/catalog/pub/redisco/containers.py @@ -67,7 +67,7 @@ class Container(object): if hasattr(self, 'db_cache') and self.db_cache: return self.db_cache else: - from redisco import connection + from . import connection self.db_cache = connection return self.db_cache