diff options
author | Tim Irnich <tim.irnich@ericsson.com> | 2017-03-22 13:14:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-22 13:14:25 +0000 |
commit | 64bd061d3fc5dadd2508f9cf7e58b8361e63f057 (patch) | |
tree | 9e6351831b8813694e307fbd93370db4d2779a70 | |
parent | e3145daf2a35df92b1889b1ead2e860e5b80e342 (diff) | |
parent | b136252fcc473c3f934e362ac3360170b54ee41a (diff) |
Merge "Fix broken call to re.search()" into stable/danube
-rw-r--r-- | sdnvpn/lib/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdnvpn/lib/utils.py b/sdnvpn/lib/utils.py index 2aef689..27fd5b3 100644 --- a/sdnvpn/lib/utils.py +++ b/sdnvpn/lib/utils.py @@ -424,7 +424,7 @@ def wait_for_cloud_init(instance): logger.error("Cloud init failed to run. Reason: %s", instance_log) break - if re.search(r"Cloud-init v. .+ finished at" in instance_log): + if re.search(r"Cloud-init v. .+ finished at", instance_log): success = True break time.sleep(sleep_time) |