From 105f7fa816766823e218c5187320cc2e319f71e4 Mon Sep 17 00:00:00 2001 From: liangke Date: Mon, 19 Mar 2018 20:02:01 +0800 Subject: 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 --- pylog/onaplogging/logWatchDog.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'pylog/onaplogging/logWatchDog.py') diff --git a/pylog/onaplogging/logWatchDog.py b/pylog/onaplogging/logWatchDog.py index e0673e3..154dc41 100644 --- a/pylog/onaplogging/logWatchDog.py +++ b/pylog/onaplogging/logWatchDog.py @@ -39,14 +39,14 @@ class FileEventHandlers(FileSystemEventHandler): try: if event.src_path == self.filepath: newConfig = _yaml2Dict(self.filepath) - print ("reload logging configure file %s" % event.src_path) + print("reload logging configure file %s" % event.src_path) config.dictConfig(newConfig) self.currentConfig = newConfig - except Exception as e: - traceback.print_exc(e) - print ("Reuse the old configuration to avoid this " - "exception terminate program") + except Exception: + traceback.print_exc() + print("Reuse the old configuration to avoid this" + "exception terminate program") if self.currentConfig: config.dictConfig(self.currentConfig) @@ -84,8 +84,8 @@ def _yamlConfig(filepath=None, watchDog=None): # here we keep the correct configuration for reusing event_handler.currentConfig = dictConfig - except Exception as e: - traceback.print_exc(e) + except Exception: + traceback.print_exc() def patch_loggingYaml(): -- cgit 1.2.3-korg