Skip to content

Commit

Permalink
[processing] fix R syntax highlighting (fix #16082)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Feb 7, 2017
1 parent 4963548 commit bb4c8c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/LexerR.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def styleText(self, start, end):
for line in source.splitlines(True):
length = len(line)

if line.startswith('#'):
if line.startswith(b'#'):
state = self.Comment
else:
state = self.Default
Expand Down

0 comments on commit bb4c8c0

Please sign in to comment.