We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0972388 commit 38e8a6cCopy full SHA for 38e8a6c
1 file changed
codespell.py
@@ -307,7 +307,8 @@ def main():
307
for x in dir_entries:
308
309
if exclude_check(x, args.exclude):
310
- print("\nExcluding", x)
+ if not args.miss:
311
+ print("\nExcluding", x)
312
continue
313
314
if not args.miss:
@@ -321,7 +322,8 @@ def main():
321
322
323
# f is a file
324
if exclude_check(f, args.exclude):
325
326
327
328
329
# f is a file, so spell check it
0 commit comments