commit: 526c4f7b662646a90add74f64c318875d1ffb4e0 Author: Vitaliy Perekhovy <feriman <AT> gmail <DOT> com> AuthorDate: Thu Sep 29 12:25:16 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> 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 <feriman <AT> gmail.com> Closes: https://github.com/gentoo/portage/pull/917 Signed-off-by: Sam James <sam <AT> 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", )
