X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2Fchromite%2Fcbuildbot%2Fstages%2Fgeneric_stages.py;h=7539d563c71071856e8dd31919352054789af564;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=3d70508adad64c13978a734efd8bf966e06af590;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/chromite/cbuildbot/stages/generic_stages.py b/src/third_party/chromite/cbuildbot/stages/generic_stages.py index 3d70508..7539d56 100644 --- a/src/third_party/chromite/cbuildbot/stages/generic_stages.py +++ b/src/third_party/chromite/cbuildbot/stages/generic_stages.py @@ -265,9 +265,7 @@ class BuilderStage(object): A string description of the exception. """ exc_type, exc_value = exc_info[:2] - if issubclass(exc_type, failures_lib.CompoundFailure): - return exc_value.ToFullMessage() - elif issubclass(exc_type, failures_lib.StepFailure): + if issubclass(exc_type, failures_lib.StepFailure): return str(exc_value) else: return ''.join(traceback.format_exception(*exc_info))