summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosmin Poieana <cmin@ropython.org>2015-02-14 15:57:46 +0200
committerCosmin Poieana <cmin@ropython.org>2015-02-14 15:57:46 +0200
commit4dd762a34b689bab8e493ff7c47217248cd97082 (patch)
tree2e30639cbd278e1a0980a3e544235332c60f1e9c
parentb72aaeb372cf50df0dd1b00369db88a12faef33f (diff)
downloadpylint-unichr.tar.gz
Fix char typounichr
-rw-r--r--checkers/python3.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/python3.py b/checkers/python3.py
index 1ca3f9c..880d5c5 100644
--- a/checkers/python3.py
+++ b/checkers/python3.py
@@ -270,7 +270,7 @@ class Python3Checker(checkers.BaseChecker):
'W1635': ('unichr built-in referenced',
'unichr-builtin',
'Used when the unichr built-in is referenced '
- '(Use char in Python 3)',
+ '(Use chr in Python 3)',
{'maxversion': (3, 0)}),
}