aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2022-11-17 18:41:33 -0500
committerMatt Turner <mattst88@gentoo.org>2022-11-17 18:42:24 -0500
commitf365eb43a81989ad24f75995df97552e08d3e7ad (patch)
tree14ab01f6b93954c37d69bdb798937a748e804ece
parenttargets: Drop /etc/asound.state creation (diff)
downloadcatalyst-f365eb43a81989ad24f75995df97552e08d3e7ad.tar.gz
catalyst-f365eb43a81989ad24f75995df97552e08d3e7ad.tar.bz2
catalyst-f365eb43a81989ad24f75995df97552e08d3e7ad.zip
catalyst: Remove stray space
Signed-off-by: Matt Turner <mattst88@gentoo.org>
-rw-r--r--catalyst/support.py2
1 files changed, 1 insertions, 1 deletions
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")]