run_checks: Ignore .venv #2
This commit is contained in:
parent
67f5f3e818
commit
7b79b23899
@ -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 == '??' and name != '.venv':
|
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