run_checks: Ignore .venv
This commit is contained in:
parent
acb058dc2b
commit
67f5f3e818
@ -134,7 +134,7 @@ def check_git():
|
|||||||
gitst = gitst.decode('UTF-8').strip()
|
gitst = gitst.decode('UTF-8').strip()
|
||||||
for line in gitst.splitlines():
|
for line in gitst.splitlines():
|
||||||
s, name = line.split(maxsplit=1)
|
s, name = line.split(maxsplit=1)
|
||||||
if s == '??':
|
if s == '??' and name != '.venv':
|
||||||
untracked.append(name)
|
untracked.append(name)
|
||||||
elif s == 'M':
|
elif s == 'M':
|
||||||
changed.append(name)
|
changed.append(name)
|
||||||
|
Loading…
Reference in New Issue
Block a user