diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-16 11:42:39 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-16 11:42:39 +0100 |
commit | 915719c6543ad92336ba5909ba6ab33d31028ad0 (patch) | |
tree | e48afc827c3bb8de757b74e7bbfc53154f7da422 /checkers | |
parent | 358cf792d4f4c6f27476c315bc815d5eb43e2e75 (diff) | |
download | pylint-915719c6543ad92336ba5909ba6ab33d31028ad0.tar.gz |
typo; fix py3k tests
Diffstat (limited to 'checkers')
-rw-r--r-- | checkers/format.py | 2 |
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'"([^"\\]|\\.)*?"' |