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 0969713888F for ; Sat, 24 Oct 2015 06:58:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86B5CE07F4; Sat, 24 Oct 2015 06:58:29 +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 8BF71E07E6 for ; Sat, 24 Oct 2015 06:58:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1CFE7340B55 for ; Sat, 24 Oct 2015 06:58:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2132F1744 for ; Sat, 24 Oct 2015 06:58:21 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1444619162.ac0f1d1f61ed3ec00831867f2a34eea88e7160ec.vapier@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/hash_utils.py X-VCS-Directories: catalyst/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: ac0f1d1f61ed3ec00831867f2a34eea88e7160ec X-VCS-Branch: master Date: Sat, 24 Oct 2015 06:58:21 +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: a093c65a-dff3-486a-98e5-ef100785f796 X-Archives-Hash: 355ba097cbe65096ac74b85d00c1b5b7 commit: ac0f1d1f61ed3ec00831867f2a34eea88e7160ec Author: Mike Frysinger gentoo org> AuthorDate: Mon Oct 12 03:06:02 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Oct 12 03:06:02 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=ac0f1d1f hash_utils: fix bad keyword w/CatalystError The exception takes "print_traceback", not "traceback". catalyst/hash_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/hash_utils.py b/catalyst/hash_utils.py index 3db61f1..1161da3 100644 --- a/catalyst/hash_utils.py +++ b/catalyst/hash_utils.py @@ -79,7 +79,7 @@ class HashMap(object): hash_) except: raise CatalystError("Error generating hash, is appropriate " + \ - "utility installed on your system?", traceback=True) + "utility installed on your system?", print_traceback=True) def calc_hash(self, file_, hash_):