summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-03 08:43:27 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-03 11:00:18 +0200
commit67adbe09fe6dbe717261be837a6d276d2fb6bf7f (patch)
tree4ce895a9c6dd7b2622b1adde2bb82e5266c482c1 /doc
parentd48d01a70381078afaf83b5f02cd08089f8699cc (diff)
downloadpylint-git-67adbe09fe6dbe717261be837a6d276d2fb6bf7f.tar.gz
Update changelog for mixed-indentation removal
Python3 raises: TabError: inconsistent use of tabs and spaces in indentation
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2.6.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/whatsnew/2.6.rst b/doc/whatsnew/2.6.rst
index 10f6f455f..92a72e3c0 100644
--- a/doc/whatsnew/2.6.rst
+++ b/doc/whatsnew/2.6.rst
@@ -19,3 +19,5 @@ Other Changes
* `bad-continuation` and `bad-whitespace` have been removed. `black` or another formatter can help you with this better than Pylint
* The `no-space-check` option has been removed, it's no longer possible to consider empty line like a `trailing-whitespace` by using clever options.
+
+* `mixed-indentation` has been removed, it is no longer useful since TabError is included directly in python3