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 53901158094 for ; Thu, 29 Sep 2022 21:37:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70811E07AE; Thu, 29 Sep 2022 21:37:26 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 578FEE07AE for ; Thu, 29 Sep 2022 21:37:26 +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 49289341048 for ; Thu, 29 Sep 2022 21:37:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA6F65E8 for ; Thu, 29 Sep 2022 21:37:23 +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: <1664487440.526c4f7b662646a90add74f64c318875d1ffb4e0.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/_global_updates.py X-VCS-Directories: lib/portage/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 526c4f7b662646a90add74f64c318875d1ffb4e0 X-VCS-Branch: master Date: Thu, 29 Sep 2022 21:37:23 +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: 5b6938f3-8afa-409c-8a83-5e5a3012b17a X-Archives-Hash: 001a636f04ec56fbbb65c0ad1c796264 commit: 526c4f7b662646a90add74f64c318875d1ffb4e0 Author: Vitaliy Perekhovy gmail com> AuthorDate: Thu Sep 29 12:25:16 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Sep 29 21:37:20 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=526c4f7b _global_updates.py: fix syntax error Due to missed comma operator, indentation between %='binary move' and S='binary SLOT move' is gone. Signed-off-by: Vitaliy Perekhovy gmail.com> Closes: https://github.com/gentoo/portage/pull/917 Signed-off-by: Sam James gentoo.org> lib/portage/_global_updates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/portage/_global_updates.py b/lib/portage/_global_updates.py index 05c13920f..feb87c3d1 100644 --- a/lib/portage/_global_updates.py +++ b/lib/portage/_global_updates.py @@ -105,7 +105,7 @@ def _do_global_updates(trees, prev_mtimes, quiet=False, if_mtime_changed=True): f"{bold('#')}='/var/db update'", f"{bold('@')}='/var/db move'\n", f"{bold('s')}='/var/db SLOT move'", - f"{bold('%')}='binary move'" + f"{bold('%')}='binary move'", f"{bold('S')}='binary SLOT move'\n", f"{bold('p')}='update /etc/portage/package.*'\n", )