Skip to content

Commit

Permalink
Fix empty lines with whitespaces apperaing as comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbr committed May 19, 2019
1 parent 693256f commit 8f9a36a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codeprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def process_line(line):
if line == '': # Don't process empty lines any further
if line.strip() == '': # Don't process empty lines any further
if cCountEmptyLines:
return "\\State", None, False, 0
else:
Expand Down

0 comments on commit 8f9a36a

Please sign in to comment.