aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaopengzhang <zhang.maopeng1@zte.com.cn>2019-06-26 14:10:17 +0800
committermaopengzhang <zhang.maopeng1@zte.com.cn>2019-06-26 14:10:17 +0800
commit8699c6606de31c116cd45f2fc74f048a5e3f397c (patch)
tree081d634b0d40a9fbaa196a1be66d35471180e5bf
parent8ae641cab9b161d9c31f0287a4cfca0600f1d665 (diff)
pylog is not compatible with python3
fix mdcContext bugs Change-Id: I29117652382e15e5eec2cf0cb91c573beed4526e Issue-ID: LOG-1072 Signed-off-by: maopengzhang <zhang.maopeng1@zte.com.cn>
-rw-r--r--pylog/onaplogging/mdcContext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylog/onaplogging/mdcContext.py b/pylog/onaplogging/mdcContext.py
index cecf8fe..fa94536 100644
--- a/pylog/onaplogging/mdcContext.py
+++ b/pylog/onaplogging/mdcContext.py
@@ -19,8 +19,8 @@ import os
import traceback
import sys
import functools
-from marker import Marker
-from marker import MARKER_TAG
+from .marker import Marker
+from .marker import MARKER_TAG
__all__ = ['patch_loggingMDC', 'MDC']