Skip to content

Commit f5be793

Browse files
author
hauntsaninja
committed
fix verbose
1 parent 59af709 commit f5be793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/modulefinder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ def matches_exclude(subpath: str, exclude: str, fscache: FileSystemCache, verbos
480480
if fscache.isdir(subpath):
481481
subpath_str += "/"
482482
if re.search(exclude, subpath_str):
483-
if verbose >= 2:
483+
if verbose:
484484
print("TRACE: Excluding {}".format(subpath_str), file=sys.stderr)
485485
return True
486486
return False

0 commit comments

Comments
 (0)