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.
2 parents 1553a50 + baeb6c0 commit 9f6d351Copy full SHA for 9f6d351
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