commit: f365eb43a81989ad24f75995df97552e08d3e7ad
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 17 23:41:33 2022 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Nov 17 23:42:24 2022 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f365eb43
catalyst: Remove stray space
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/support.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/support.py b/catalyst/support.py
index a69566d2..6945d053 100644
--- a/catalyst/support.py
+++ b/catalyst/support.py
@@ -78,7 +78,7 @@ def file_check(filepath, extensions=None):
files = glob.glob("%s.*" % filepath)
# remove any false positive files
files = [x for x in files if
- not x.endswith( ".CONTENTS") and
+ not x.endswith(".CONTENTS") and
not x.endswith(".CONTENTS.gz") and
not x.endswith(".DIGESTS") and
not x.endswith(".sha256")]