fix spark line in rate

This commit is contained in:
Gordon Shumway 2019-05-05 00:47:44 -04:00 committed by GitHub
parent bc211d250b
commit 81c408334d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -933,7 +933,7 @@ class ASCII(callbacks.Plugin):
line = re.sub('┐$', '────────┐', line)
line = re.sub('┤$', '────────┤', line)
line = re.sub('┘$', '────────┘', line)
line = re.sub('\(1H\)\x0F\s+│$', '\x0F ', line)
line = re.sub('\(1H\)\x0F\s+│$', '(1H)\x0F', line)
if self.registryValue('pasteEnable', msg.args[0]):
paste += line + "\n"
if not line.strip() and not self.stopped[msg.args[0]]: