diff options
author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2012-09-19 17:36:47 +0200 |
---|---|---|
committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2012-09-19 17:36:47 +0200 |
commit | d4d8fe742e8860df3a699a4999be133a1fc8db42 (patch) | |
tree | 0d616ccb2d84a926c1dba1f67c4181a3956cd27f /checkers/format.py | |
parent | fcc1a91b50f564627716230ffc159381b241c07f (diff) | |
download | pylint-d4d8fe742e8860df3a699a4999be133a1fc8db42.tar.gz |
lint fixes
Diffstat (limited to 'checkers/format.py')
-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 67b6952..d45667f 100644 --- a/checkers/format.py +++ b/checkers/format.py @@ -421,7 +421,7 @@ class StringConstantChecker(BaseRawChecker): start_row, start_col) def process_non_raw_string_token(self, prefix, string_body, start_row, - start_col): + start_col): """check for bad escapes in a non-raw string. prefix: lowercase string of eg 'ur' string prefix markers. |