kvm test: Fix more incorrect line breaks lying around.
Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@3270 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/tests/kvm/kvm_tests.py b/client/tests/kvm/kvm_tests.py
index 54d2a7a..4b87a76 100644
--- a/client/tests/kvm/kvm_tests.py
+++ b/client/tests/kvm/kvm_tests.py
@@ -327,16 +327,16 @@
logging.info(str(result))
if result[1] == "FAIL":
status_fail = True
- message_fail = "Test '%s' ended with FAIL"
- " (info: '%s')" % (result[0], result[3])
+ message_fail = ("Test '%s' ended with FAIL "
+ "(info: '%s')" % (result[0], result[3]))
if result[1] == "ERROR":
status_error = True
- message_error = "Test '%s' ended with ERROR"
- " (info: '%s')" % (result[0], result[3])
+ message_error = ("Test '%s' ended with ERROR "
+ "(info: '%s')" % (result[0], result[3]))
if result[1] == "ABORT":
status_error = True
- message_error = "Test '%s' ended with ABORT"
- " (info: '%s')" % (result[0], result[3])
+ message_error = ("Test '%s' ended with ABORT "
+ "(info: '%s')" % (result[0], result[3]))
# Copy test results to the local bindir/guest_results
logging.info("Copying results back from guest...")