Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -468,3 +468,5 @@ contributors:
* James Sinclair (irgeek): contributor

* Andreas Finkler: contributor

* Sebastian Müller: contributor
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ Release date: Undefined

* Don't show ``DuplicateBasesError`` for attribute access

* Fix crash when checking ``setup.cfg`` for pylint config when there are non-ascii characters in there

Closes #4328

* Allow code flanked in backticks to be skipped by spellchecker

Closes #4319
Expand Down
2 changes: 1 addition & 1 deletion pylint/config/find_default_config_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _toml_has_config(path):

def _cfg_has_config(path):
parser = configparser.ConfigParser()
parser.read(path)
parser.read(path, encoding="utf-8")
return any(section.startswith("pylint.") for section in parser.sections())


Expand Down