[PATCH 3/3] be more concise when run_once fails, let's have shorter email subjects

Kamil Páral kparal at redhat.com
Tue Sep 14 11:04:37 UTC 2010


---
 lib/python/test.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/python/test.py b/lib/python/test.py
index 20b35cd..28359f5 100644
--- a/lib/python/test.py
+++ b/lib/python/test.py
@@ -57,9 +57,9 @@ class AutoQATest(test.test, object):
     def run_once_failed(self, exc = None):
         self.result = "CRASHED"
         if exc is not None:
-            self.summary = "Run_once failed: %s: %s" % (exc.__class__.__name__, exc)
+            self.summary = "%s: %s" % (exc.__class__.__name__, exc)
         else:
-            self.summary = "Run_once failed: Exception: Unknown exception"
+            self.summary = "Exception: Unknown exception"
         try:
             self.postprocess_iteration()
         except:
-- 
1.7.2.2



More information about the autoqa-devel mailing list