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 Oct 12, 2022
1 parent 900f186 commit 9300f33
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 @@ -646,14 +646,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 9300f33

Please sign in to comment.