summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pylint/checkers/python3.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py
index b5d52fbd4..57ecb4986 100644
--- a/pylint/checkers/python3.py
+++ b/pylint/checkers/python3.py
@@ -545,9 +545,9 @@ class Python3Checker(checkers.BaseChecker):
'deprecated-string-function': {
'string': frozenset([
'maketrans', 'atof', 'atoi', 'atol', 'capitalize', 'expandtabs', 'find', 'rfind',
- 'index', 'rindex', 'count', 'lower', 'letters', 'split', 'rsplit', 'splitfields', 'join',
- 'joinfields', 'lstrip', 'rstrip', 'strip', 'swapcase', 'translate', 'upper',
- 'ljust', 'rjust', 'center', 'zfill', 'replace',
+ 'index', 'rindex', 'count', 'lower', 'letters', 'split', 'rsplit', 'splitfields',
+ 'join', 'joinfields', 'lstrip', 'rstrip', 'strip', 'swapcase', 'translate',
+ 'upper', 'ljust', 'rjust', 'center', 'zfill', 'replace',
'lowercase', 'letters', 'uppercase', 'atol_error',
'atof_error', 'atoi_error', 'index_error'
])