Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Adélie Linux
apkkit
Commits
5046dfa8
Verified
Commit
5046dfa8
authored
Mar 08, 2016
by
A. Wilcox
🦊
Browse files
apkfile: Fix logic error
parent
2f4c6f45
Changes
1
Hide whitespace changes
Inline
Side-by-side
apkkit/io/apkfile.py
View file @
5046dfa8
...
...
@@ -48,11 +48,8 @@ def _tar_filter(filename):
"""tarfile exclusion predicate that calls all defined filter functions."""
global
FILTERS
for
func
in
FILTERS
:
if
func
(
filename
):
return
True
return
False
results
=
[
func
(
filename
)
for
func
in
FILTERS
]
return
all
(
results
)
def
_ensure_no_debug
(
filename
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment