diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-08-19 15:41:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-08-19 15:41:36 +0000 |
commit | e248e3c3485b14e216c07eae9e6bb5891973cc1f (patch) | |
tree | c47ef29c7d9bf575ecfb8054bf05437041149c7f | |
parent | 8b1f63b10f3915c6b857205d6e5ca908bfc233f9 (diff) | |
parent | 2a383c7244dee510e60752b6d88fb5c68cded1ec (diff) |
Merge "Fix print when push_results_to_db fails"
-rw-r--r-- | utils/functest_utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/functest_utils.py b/utils/functest_utils.py index 862b53390..b83309e3a 100644 --- a/utils/functest_utils.py +++ b/utils/functest_utils.py @@ -222,8 +222,8 @@ def push_results_to_db(project, case_name, logger, r.raise_for_status() return True except Exception, e: - print("Error [push_results_to_db('%s', '%s', '%s', " + - "'%s', '%s', '%s', '%s', '%s', '%s')]:" % + print("Error [push_results_to_db('%s', '%s', '%s', '%s'," + "'%s', '%s', '%s', '%s', '%s')]:" % (url, project, case_name, pod_name, version, scenario, criteria, build_tag, details)), e return False |