diff options
Diffstat (limited to 'pygments/lexers/math.py')
-rw-r--r-- | pygments/lexers/math.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/math.py b/pygments/lexers/math.py index bf609a68..5f00c08e 100644 --- a/pygments/lexers/math.py +++ b/pygments/lexers/math.py @@ -228,7 +228,7 @@ class MatlabSessionLexer(Lexer): # without is showing error on same line as before...? line = "\n" + line token = (0, Generic.Traceback, line) - insertions.append( (idx, [token,]) ) + insertions.append((idx, [token])) else: if curcode: |