diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2018-08-03 05:58:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-08-03 05:58:55 +0000 |
commit | 8aaf7d0a04017b766aec7b029634d306135b44ef (patch) | |
tree | 81e438652ad0fcc26680bc4e77035e9c28819454 | |
parent | 9c19bb9bb41e36d4ca70563649ced92ce7ab9b82 (diff) | |
parent | 5bf02523aeb68ea79805d8c0b5d5823757920432 (diff) |
Merge "Fix parse error in tempest_smoke"
-rw-r--r-- | functest/opnfv_tests/openstack/tempest/conf_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/conf_utils.py b/functest/opnfv_tests/openstack/tempest/conf_utils.py index 88ad3b2d9..6eb79ed41 100644 --- a/functest/opnfv_tests/openstack/tempest/conf_utils.py +++ b/functest/opnfv_tests/openstack/tempest/conf_utils.py @@ -55,7 +55,7 @@ def create_rally_deployment(): with open(RALLY_AARCH64_PATCH_PATH, "r") as pfile: rally_patch_conf = pfile.read() - for line in fileinput.input(RALLY_CONF_PATH, inplace=1): + for line in fileinput.input(RALLY_CONF_PATH): print(line, end=' ') if "cirros|testvm" in line: print(rally_patch_conf) |