summaryrefslogtreecommitdiff
path: root/checkers
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-12-16 11:42:39 +0100
committerEmile Anclin <emile.anclin@logilab.fr>2010-12-16 11:42:39 +0100
commit915719c6543ad92336ba5909ba6ab33d31028ad0 (patch)
treee48afc827c3bb8de757b74e7bbfc53154f7da422 /checkers
parent358cf792d4f4c6f27476c315bc815d5eb43e2e75 (diff)
downloadpylint-915719c6543ad92336ba5909ba6ab33d31028ad0.tar.gz
typo; fix py3k tests
Diffstat (limited to 'checkers')
-rw-r--r--checkers/format.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/format.py b/checkers/format.py
index 65202ff..6a2d5ac 100644
--- a/checkers/format.py
+++ b/checkers/format.py
@@ -73,7 +73,7 @@ if sys.version_info < (3, 0):
'W0333': ('Use of the `` operator',
'Used when the deprecated "``" (backtick) operator is used '
'instead of the str() function.'),
- }
+ })
# simple quoted string rgx
SQSTRING_RGX = r'"([^"\\]|\\.)*?"'