From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 69C2B1581E7 for ; Sun, 28 Apr 2024 00:06:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A098E29F0; Sun, 28 Apr 2024 00:06:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5BB4FE29F0 for ; Sun, 28 Apr 2024 00:06:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 926C333BF3B for ; Sun, 28 Apr 2024 00:06:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A66715EC for ; Sun, 28 Apr 2024 00:06:37 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1714262763.87ee964c3e6d73bc537cc410426c999a1cc4ed91.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: pylintrc X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 87ee964c3e6d73bc537cc410426c999a1cc4ed91 X-VCS-Branch: master Date: Sun, 28 Apr 2024 00:06:37 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 82be0290-5409-4eec-9ba6-9bb04d8e0ba4 X-Archives-Hash: ff436ef09bc659fc4758f47ff399c967 commit: 87ee964c3e6d73bc537cc410426c999a1cc4ed91 Author: Alfred Wingate protonmail com> AuthorDate: Sat Apr 6 09:18:55 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Apr 28 00:06:03 2024 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=87ee964c pylintrc: give fully qualified name to overgeneral-exceptions * Ability to give unqualified names will be removed in pylint-3.1.0. https://pylint.pycqa.org/en/latest/whatsnew/3/3.0/index.html#changes-requiring-user-actions Signed-off-by: Alfred Wingate protonmail.com> Signed-off-by: Sam James gentoo.org> pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index 398c04475d..9d3dae6212 100644 --- a/pylintrc +++ b/pylintrc @@ -482,4 +482,4 @@ preferred-modules= # Exceptions that will emit a warning when being caught. Defaults to # "BaseException, Exception". -overgeneral-exceptions=BaseException +overgeneral-exceptions=builtins.BaseException