From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D7283138ADA for ; Thu, 26 Feb 2015 20:44:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D10BE0918; Thu, 26 Feb 2015 20:44:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5BE20E0963 for ; Thu, 26 Feb 2015 20:44:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 76853340C12 for ; Thu, 26 Feb 2015 20:44:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90E2A129E6 for ; Thu, 26 Feb 2015 20:44:30 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1424981097.a8d406680bb626105407d66905bb8de82349fa03.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: a8d406680bb626105407d66905bb8de82349fa03 X-VCS-Branch: pending Date: Thu, 26 Feb 2015 20:44:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: dae452c7-1550-4fa1-8d87-116318b03dc7 X-Archives-Hash: 4f0326b1ac00b052b5b3abcd09a734fb Message-ID: <20150226204430._SogTddE_73Nmm1-P7UiaS-DfMx6YKNfHZKf6i1GA7U@z> commit: a8d406680bb626105407d66905bb8de82349fa03 Author: Brian Dolbec gentoo org> AuthorDate: Tue Dec 31 09:00:16 2013 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Thu Feb 26 20:04:57 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=a8d40668 Report the task exception that occurred. --- catalyst/base/stagebase.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 7395351..1b09935 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -1332,9 +1332,10 @@ class StageBase(TargetBase, ClearBase, GenBase): sys.stdout.flush() try: apply(getattr(self,x)) - except: + except Exception as e: + print "--- Exeption running action sequence:" + x self.mount_safety_check() - raise + raise e self.chroot_lock.unlock()