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 AF01C138247 for ; Wed, 22 Jan 2014 05:04:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7B9FE1166; Wed, 22 Jan 2014 05:04:14 +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 488ABE1161 for ; Wed, 22 Jan 2014 05:04:14 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 73BA333F077 for ; Wed, 22 Jan 2014 05:04:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 18D51187B8 for ; Wed, 22 Jan 2014 05:04:11 +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: <1388772141.8cbc93f4249d2bd6c96869b90d632901e15f0969.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:3.0 commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 8cbc93f4249d2bd6c96869b90d632901e15f0969 X-VCS-Branch: 3.0 Date: Wed, 22 Jan 2014 05:04:11 +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: 0878fc54-8be2-46c6-b3d9-10cafb38b64a X-Archives-Hash: 9b73a95b0cedc33d4b035928e15be851 commit: 8cbc93f4249d2bd6c96869b90d632901e15f0969 Author: Brian Dolbec gentoo org> AuthorDate: Tue Dec 31 09:00:16 2013 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Jan 3 18:02:21 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=8cbc93f4 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 b0144f6..a196c36 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()