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 A0A541384C0 for ; Sun, 30 Aug 2015 02:15:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7931E080B; Sun, 30 Aug 2015 02:15:40 +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 4EAFFE080B for ; Sun, 30 Aug 2015 02:15:40 +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 16B6F3408AC for ; Sun, 30 Aug 2015 02:15:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E4D3171 for ; Sun, 30 Aug 2015 02:15:35 +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: <1440900920.348e9759220ef02cefaa80e5b763a32572b15bc3.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/config.py X-VCS-Directories: catalyst/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 348e9759220ef02cefaa80e5b763a32572b15bc3 X-VCS-Branch: master Date: Sun, 30 Aug 2015 02:15:35 +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: 77742bcd-b8e2-48ca-8040-ea059d90c66b X-Archives-Hash: 084f770d60f76cf3483e2e5db55b1be7 commit: 348e9759220ef02cefaa80e5b763a32572b15bc3 Author: Brian Dolbec gentoo org> AuthorDate: Sun Aug 30 02:15:20 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun Aug 30 02:15:20 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=348e9759 catalyst/config.py: Fix an error for x is an integer catalyst/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/config.py b/catalyst/config.py index c952648..67d4e77 100644 --- a/catalyst/config.py +++ b/catalyst/config.py @@ -85,7 +85,7 @@ class ParserBase: # cur_array += mobjs cur_array += myline.split() else: - raise CatalystError("Syntax error: " + x, print_traceback=True) + raise CatalystError("Syntax error: %s" % x, print_traceback=True) # XXX: Do we really still need this "single value is a string" behavior? if len(cur_array) == 2: