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 BA2A11399CE for ; Thu, 3 Sep 2015 15:14:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9579A141EC; Thu, 3 Sep 2015 15:14:17 +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 D694C142DE for ; Thu, 3 Sep 2015 15:14:15 +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 270243408FF for ; Thu, 3 Sep 2015 15:14:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D606D191 for ; Thu, 3 Sep 2015 15:14: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: <1441292942.6428baba7e9f7aa6fc4ede457804adbe793c3ac4.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/main.py X-VCS-Directories: catalyst/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 6428baba7e9f7aa6fc4ede457804adbe793c3ac4 X-VCS-Branch: pending Date: Thu, 3 Sep 2015 15:14: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: 101d2306-cd18-4ef3-bd90-f1eeeb6f49a4 X-Archives-Hash: 9a8e9dca51b911a352ae53c61e1a85cc commit: 6428baba7e9f7aa6fc4ede457804adbe793c3ac4 Author: Brian Dolbec gentoo org> AuthorDate: Sun May 24 07:38:32 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Thu Sep 3 15:09:02 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=6428baba catalyst/main.py: Comment out the try: except: pair for target.run() catalyst/main.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/catalyst/main.py b/catalyst/main.py index 0ba81b9..7e3b55e 100644 --- a/catalyst/main.py +++ b/catalyst/main.py @@ -163,12 +163,12 @@ def build_target(addlargs): "Target \"%s\" not available." % target, print_traceback=True) - try: - target.run() - except: - print "!!! catalyst: Error encountered during run of target " + \ - addlargs["target"] - sys.exit(1) + #try: + target.run() + #except: + #print "!!! catalyst: Error encountered during run of target " + \ + # addlargs["target"] + #sys.exit(1) def main():