diff options
author | liangke <lokyse@163.com> | 2018-03-19 20:02:01 +0800 |
---|---|---|
committer | liangke <lokyse@163.com> | 2018-03-19 21:58:19 +0800 |
commit | 105f7fa816766823e218c5187320cc2e319f71e4 (patch) | |
tree | f97d02a9481d8ec34ed52ff722ae2be119b30583 /pylog/onaplogging/mdcformatter.py | |
parent | a73cc9030d26f37224ca7bca72469625605d4634 (diff) |
Fix some issues
1 Fix pep8 issue.
2 Add version file for staging and release job.
3 Modify 'traceback.print_exc()' code without Exception
object in it.
Change-Id: Id6d42a1a671f9cd8fdcf266bdb8f468889681bb9
Issue-ID: MULTICLOUD-151
Issue-ID: LOG-161
Signed-off-by: liangke <lokyse@163.com>
Diffstat (limited to 'pylog/onaplogging/mdcformatter.py')
-rw-r--r-- | pylog/onaplogging/mdcformatter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylog/onaplogging/mdcformatter.py b/pylog/onaplogging/mdcformatter.py index f63ec94..253420d 100644 --- a/pylog/onaplogging/mdcformatter.py +++ b/pylog/onaplogging/mdcformatter.py @@ -114,7 +114,7 @@ class MDCFormatter(logging.Formatter): return s except KeyError as e: - print ("The mdc key %s format is wrong" % e.message) + print("The mdc key %s format is wrong" % e.message) except Exception: raise |