From b37369295f7cbd670d572fd379962ae02d45b7a7 Mon Sep 17 00:00:00 2001 From: I H Shaon Date: Tue, 17 Nov 2015 11:53:44 -0800 Subject: [PATCH] fix space typo --- testcases/cloud_user/images/load_hvm_image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testcases/cloud_user/images/load_hvm_image.py b/testcases/cloud_user/images/load_hvm_image.py index 84fcacca..0c0c9e6e 100755 --- a/testcases/cloud_user/images/load_hvm_image.py +++ b/testcases/cloud_user/images/load_hvm_image.py @@ -81,8 +81,8 @@ testcase.debug("Retrying to resolve " + str(testcase.args.url) + " and got: " + str(e.reason)) elif hasattr(e, 'code'): testcase.debug("Retrying to resolve " + str(testcase.args.url) + " and got: " + str(e.code)) - time.sleep(retry_delay) - continue + time.sleep(retry_delay) + continue else: if hasattr(e, 'reason'): raise AssertionError("INVALID URL: " + str(testcase.args.url) + " " + str(e.reason))