diff options
| author | John Vandenberg <jayvdb@gmail.com> | 2015-11-08 15:03:31 +1100 |
|---|---|---|
| committer | John Vandenberg <jayvdb@gmail.com> | 2015-11-08 15:29:27 +1100 |
| commit | 9a4d45c12e86cbb9effd749bd13ba48927063c23 (patch) | |
| tree | bf129025e50fd373e3e0f0582be4374de53b3544 /pyflakes/checker.py | |
| parent | 69a715dff7243eda61f0bf5f16b8a37afb5b7ac6 (diff) | |
| download | pyflakes-9a4d45c12e86cbb9effd749bd13ba48927063c23.tar.gz | |
PEP 498 f-strings support
PEP 498 f-strings cause pyflakes to crash with
AttributeError: 'Checker' object has no attribute 'FORMATTEDVALUE'
Diffstat (limited to 'pyflakes/checker.py')
| -rw-r--r-- | pyflakes/checker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyflakes/checker.py b/pyflakes/checker.py index 17e7b66..80f26ee 100644 --- a/pyflakes/checker.py +++ b/pyflakes/checker.py @@ -675,7 +675,7 @@ class Checker(object): EQ = NOTEQ = LT = LTE = GT = GTE = IS = ISNOT = IN = NOTIN = ignore # additional node types - COMPREHENSION = KEYWORD = handleChildren + COMPREHENSION = KEYWORD = FORMATTEDVALUE = handleChildren def GLOBAL(self, node): """ |
