tarfilter, coverage.py: changes for black 23.1.0

main
parent 8d9a94fca5
commit 3c0990d050
Signed by untrusted user: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -201,7 +201,7 @@ def main():
args = parser.parse_args()
# copy over files from git or as distributed
for (git, dist, target) in [
for git, dist, target in [
("./mmdebstrap", "/usr/bin/mmdebstrap", "mmdebstrap"),
("./tarfilter", "/usr/bin/mmtarfilter", "tarfilter"),
(

@ -178,14 +178,14 @@ Lastly, shift user id and group id of each entry by the value given by the
skip = False
if not hasattr(args, "pathfilter"):
return False
for (t, r) in args.pathfilter:
for t, r in args.pathfilter:
if r.match(member.name[1:]) is not None:
if t == "path_include":
skip = False
else:
skip = True
if skip and (member.isdir() or member.issym()):
for (t, r) in args.pathfilter:
for t, r in args.pathfilter:
if t != "path_include":
continue
prefix = prefix_prog.sub(r"\1", r.pattern)
@ -198,7 +198,7 @@ Lastly, shift user id and group id of each entry by the value given by the
if not hasattr(args, "paxfilter"):
return False
skip = False
for (t, r) in args.paxfilter:
for t, r in args.paxfilter:
if r.match(header) is None:
continue
if t == "pax_include":

Loading…
Cancel
Save