From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 9DF33158088 for ; Tue, 04 Nov 2025 21:04:48 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 62DD4340E6C for ; Tue, 04 Nov 2025 21:04:48 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 57FA21103CB; Tue, 04 Nov 2025 21:04:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 4DE471103CB for ; Tue, 04 Nov 2025 21:04:46 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 094A6340E6C for ; Tue, 04 Nov 2025 21:04:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 704D9336A for ; Tue, 04 Nov 2025 21:04:44 +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: <1762290276.c81d7e0baf439a41f0c2508b779ded2be7173add.sam@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: bin/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: bin/eshowkw X-VCS-Directories: bin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c81d7e0baf439a41f0c2508b779ded2be7173add X-VCS-Branch: master Date: Tue, 04 Nov 2025 21:04:44 +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: f1f80272-a8ee-4d95-8786-215976479ec1 X-Archives-Hash: 8cc8e6632131bd3fe5a3121a01e25b60 commit: c81d7e0baf439a41f0c2508b779ded2be7173add Author: Sam James gentoo org> AuthorDate: Tue Nov 4 21:04:36 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 4 21:04:36 2025 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=c81d7e0b eshowkw: add if __name__ == "__main__" for python 3.14 Bug: https://bugs.gentoo.org/965514 Signed-off-by: Sam James gentoo.org> bin/eshowkw | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/eshowkw b/bin/eshowkw index d32ba6c..5908cf5 100755 --- a/bin/eshowkw +++ b/bin/eshowkw @@ -5,4 +5,6 @@ import sys from gentoolkit.eshowkw import main as emain -sys.exit(emain(sys.argv[1:])) + +if __name__ == "__main__": + sys.exit(emain(sys.argv[1:]))