Remove debug prints

This commit is contained in:
Jim Paris 2021-10-13 14:46:58 -04:00
parent e72564436c
commit 356f6db2ca

View File

@ -79,9 +79,6 @@ class Config:
def match_re(self, re: tuple[list[typing.Pattern],
list[typing.Pattern]],
path: bytes, is_dir: bool):
if b'data.ext4.win000' in path:
print(path)
print(re)
# If it's a directory, try matching against a trailing slash
# first.
if is_dir and self.match_re(re, path + b'/', False):