don't recurse into directories that start with '.'
This commit is contained in:
parent
c01e32118b
commit
501447d7c7
|
@ -99,7 +99,8 @@ def check(file):
|
||||||
for name in names:
|
for name in names:
|
||||||
fullname = os.path.join(file, name)
|
fullname = os.path.join(file, name)
|
||||||
if ((recurse and os.path.isdir(fullname) and
|
if ((recurse and os.path.isdir(fullname) and
|
||||||
not os.path.islink(fullname))
|
not os.path.islink(fullname) and
|
||||||
|
not os.path.split(fullname)[1].startswith("."))
|
||||||
or name.lower().endswith(".py")):
|
or name.lower().endswith(".py")):
|
||||||
check(fullname)
|
check(fullname)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue