diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-09-28 07:08:46 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-09-28 07:09:50 +0000 |
commit | 25620fad6a0b553a603441c6ec268e3ca27300c7 (patch) | |
tree | bd56fea6733408b4d1fcf9cedf8e8d6640f6ff40 /sdnvpn/test/functest/run_sdnvpn_tests.py | |
parent | 8a20b43bfb9723ae1f2410a5448363a5e3f38f7b (diff) |
Fix the argument error
Change-Id: Idc4ba350a8bf77ec555109ad4e7a2649e2b0880d
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'sdnvpn/test/functest/run_sdnvpn_tests.py')
-rw-r--r-- | sdnvpn/test/functest/run_sdnvpn_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdnvpn/test/functest/run_sdnvpn_tests.py b/sdnvpn/test/functest/run_sdnvpn_tests.py index 140256d..52a6994 100644 --- a/sdnvpn/test/functest/run_sdnvpn_tests.py +++ b/sdnvpn/test/functest/run_sdnvpn_tests.py @@ -89,7 +89,7 @@ class SdnvpnFunctest(testcase.TestCase): except Exception as ex: self.__logger.error(('Something went wrong in the Log gathering.' 'Ex: %s, Trace: %s') - % ex, traceback.format_exc()) + % (ex, traceback.format_exc())) if overall_status == "PASS": self.result = 100 |