diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2016-05-31 17:49:49 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2016-05-31 17:49:49 +0200 |
commit | 063eac6f79662606d11a68617e0cb2aaa1c449b6 (patch) | |
tree | 32a651e9cb16ad6aaf12cc872900d597300d0f92 /utils/functest_utils.py | |
parent | 75069767b94925ba2050c9fd95db876033923aad (diff) |
Avoid tuples when printing multiple strings
It fixes bugs induced by [1].
[1] https://gerrit.opnfv.org/gerrit/#/c/12623
Change-Id: I0232b14bed767b3ff857192146551a7963699bb9
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'utils/functest_utils.py')
-rw-r--r-- | utils/functest_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/functest_utils.py b/utils/functest_utils.py index 8ee5346c1..23dea7e5a 100644 --- a/utils/functest_utils.py +++ b/utils/functest_utils.py @@ -165,7 +165,7 @@ def push_results_to_db(db_url, project, case_name, logger, pod_name, print ("Error [push_results_to_db('%s', '%s', '%s', " + "'%s', '%s', '%s', '%s', '%s', '%s')]:" % (db_url, project, case_name, pod_name, version, - scenario, criteria, build_tag, payload), e) + scenario, criteria, build_tag, payload)), e return False |