diff --git a/scripts/run_checks.py b/scripts/run_checks.py index c03fc9aaa..d55ce8b59 100755 --- a/scripts/run_checks.py +++ b/scripts/run_checks.py @@ -134,7 +134,7 @@ def check_git(): gitst = gitst.decode('UTF-8').strip() for line in gitst.splitlines(): s, name = line.split(maxsplit=1) - if s == '??' and name != '.venv': + if s == '??' and name != '.venv/': untracked.append(name) elif s == 'M': changed.append(name)