diff options
| author | Alasdair Nicol <alasdair@memset.com> | 2013-10-17 23:27:45 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-17 20:20:11 -0400 |
| commit | dfb4cb9970f86487f0aaa88c5dfcfafa31e4f430 (patch) | |
| tree | 4762099924f11873e9b6608e6f056939f16410b9 /django/utils | |
| parent | d97bec5ee3a6284d30b613c9070588a60358e7ec (diff) | |
Fixed #21285 -- Fixed E121,E122 pep8 warnings
Diffstat (limited to 'django/utils')
| -rw-r--r-- | django/utils/jslex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/utils/jslex.py b/django/utils/jslex.py index c17d751faa..f042d2e5ee 100644 --- a/django/utils/jslex.py +++ b/django/utils/jslex.py @@ -145,12 +145,12 @@ class JsLexer(Lexer): states = { 'div': # slash will mean division both_before + [ - Tok("punct", literals("/= /"), next='reg'), + Tok("punct", literals("/= /"), next='reg'), ] + both_after, 'reg': # slash will mean regex both_before + [ - Tok("regex", + Tok("regex", r""" / # opening slash # First character is.. |
