Skip to content

Commit

Permalink
Avoid bailing out with uncaught PermissionError
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Dec 11, 2021
1 parent d8948ad commit c38baa4
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions codespell_lib/_codespell.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,14 +627,26 @@ def parse_file(filename, colors, summary, misspellings, exclude_lines,
if not os.path.isfile(filename):
return bad_count

text = is_text_file(filename)
try:
text = is_text_file(filename)
except PermissionError as e:
print("WARNING: %s: %s" % (e.strerror, filename),
file=sys.stderr)
return bad_count
except OSError:
return bad_count

if not text:
if not options.quiet_level & QuietLevels.BINARY_FILE:
print("WARNING: Binary file: %s" % filename, file=sys.stderr)
return bad_count
try:
lines, encoding = file_opener.open(filename)
except Exception:
except PermissionError as e:
print("WARNING: %s: %s" % (e.strerror, filename),
file=sys.stderr)
return bad_count
except OSError:
return bad_count

for i, line in enumerate(lines):
Expand Down

0 comments on commit c38baa4

Please sign in to comment.