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 894E9138CE8 for ; Mon, 15 Jun 2015 20:25:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B065E0838; Mon, 15 Jun 2015 20:25:08 +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 AA26EE0839 for ; Mon, 15 Jun 2015 20:25:07 +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 ECAF2340DC1 for ; Mon, 15 Jun 2015 20:25:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C814A3D for ; Mon, 15 Jun 2015 20:25:00 +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: <1432485173.13b3075b46020847b077b8efe797075b6ecceaf4.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: 13b3075b46020847b077b8efe797075b6ecceaf4 X-VCS-Branch: pending Date: Mon, 15 Jun 2015 20:25:00 +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: 62d8c2a3-4a87-47c5-b53e-8ebf4f262351 X-Archives-Hash: d139df5bd437e2029e1536b9e57f3155 commit: 13b3075b46020847b077b8efe797075b6ecceaf4 Author: Brian Dolbec gentoo org> AuthorDate: Sun May 24 07:38:32 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun May 24 16:32:53 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=13b3075b 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 35a4edc..b498f11 100644 --- a/catalyst/main.py +++ b/catalyst/main.py @@ -164,12 +164,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():