We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc45a70 commit baeb6c0Copy full SHA for baeb6c0
utils/viewcfg
@@ -59,8 +59,9 @@ class Block(object):
59
if self.content is None:
60
self.content = ""
61
escaped_text = re.sub(r'([\\<>{}"|])', r'\\\1', text[0:80]).rstrip()
62
- self.content += escaped_text + '\\l'
63
- self.last_line = text
+ if len(escaped_text) > 0:
+ self.content += escaped_text + '\\l'
64
+ self.last_line = text
65
66
def get_succs(self):
67
if self.succs is None:
0 commit comments