commit: 2fed10c4896e35b7ffa0f3235b213538deae6f7f
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 14 10:48:07 2024 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sun Jan 14 10:48:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=2fed10c4
scripts/auto-bootstraps/update_distfiles.py: fix syntax error
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
scripts/auto-bootstraps/update_distfiles.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/auto-bootstraps/update_distfiles.py
b/scripts/auto-bootstraps/update_distfiles.py
index c8578a075d..33b5ed2065 100755
--- a/scripts/auto-bootstraps/update_distfiles.py
+++ b/scripts/auto-bootstraps/update_distfiles.py
@@ -19,7 +19,7 @@ for path in sys.argv[1:]:
if not f.is_file() or f.name.startswith('.'):
continue
# ensure this live snapshot never ends up in a mirror
- if (f.name.startswith('portage-latest.tar.'):
+ if f.name.startswith('portage-latest.tar.'):
continue
srcfile = os.path.join(path, f.name)
h = hash_file(srcfile)