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 353CF13888F for ; Sat, 24 Oct 2015 06:58:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54FB4E07F2; 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 90C42E07F4 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 9328F340B46 for ; Sat, 24 Oct 2015 06:58:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0DA51741 for ; Sat, 24 Oct 2015 06:58:20 +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: <1444611642.e8ab33919dc2359da0b1922240d7a07de304596d.vapier@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: e8ab33919dc2359da0b1922240d7a07de304596d X-VCS-Branch: master Date: Sat, 24 Oct 2015 06:58:20 +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: 47824a25-d61a-496f-82a6-76e8651ea593 X-Archives-Hash: 95cde014a780d67666635f4b9d123474 commit: e8ab33919dc2359da0b1922240d7a07de304596d Author: Mike Frysinger gentoo org> AuthorDate: Mon Oct 12 01:00:42 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Oct 12 01:00:42 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=e8ab3391 stagebase: disable undefined-variable lint warning raw_input doesn't exist w/py3, so pylint complains. Disable the warning for this one line since we know it's fine. catalyst/base/stagebase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 438e4d3..8ea1dc4 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -28,7 +28,7 @@ from catalyst.base.resume import AutoResume if sys.version_info[0] >= 3: py_input = input else: - py_input = raw_input + py_input = raw_input # pylint: disable=undefined-variable class StageBase(TargetBase, ClearBase, GenBase):