diff options
Diffstat (limited to 'pygments/lexers/erlang.py')
-rw-r--r-- | pygments/lexers/erlang.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/erlang.py b/pygments/lexers/erlang.py index fdc83451..829a1c23 100644 --- a/pygments/lexers/erlang.py +++ b/pygments/lexers/erlang.py @@ -504,7 +504,7 @@ class ElixirConsoleLexer(Lexer): insertions = [] for match in line_re.finditer(text): line = match.group() - if line.startswith(u'** '): + if line.startswith('** '): in_error = True insertions.append((len(curcode), [(0, Generic.Error, line[:-1])])) |