diff options
author | Hui Deng <denghui12@huawei.com> | 2019-07-16 09:24:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-16 09:24:53 +0000 |
commit | 638b2b14c38429e40d41abcbe0a155b94849c35b (patch) | |
tree | d964633a5b1c8c2d67a61c785ce7147cacb8e91b | |
parent | 2c3b00a3a4a795ca785bfb3e987f26e42a569d13 (diff) | |
parent | dd98761bf3231294471c47c194d49fef47429c90 (diff) |
Merge "resolve python2->python3 issues"
-rw-r--r-- | genericparser/pub/redisco/containers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/genericparser/pub/redisco/containers.py b/genericparser/pub/redisco/containers.py index 8957294..d30c227 100644 --- a/genericparser/pub/redisco/containers.py +++ b/genericparser/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 |