# HG changeset patch # User Sebastien Jodogne # Date 1712076249 -7200 # Node ID 685022ee236ca1b931d195253c320bba3e33e63d # Parent 88539de02bccd5ac0343eaee6f08894f55945195 fix diff -r 88539de02bcc -r 685022ee236c Plugins/Worklists/Run.py --- a/Plugins/Worklists/Run.py Tue Apr 02 18:37:40 2024 +0200 +++ b/Plugins/Worklists/Run.py Tue Apr 02 18:44:09 2024 +0200 @@ -143,7 +143,7 @@ if not tag in ignoreTags: line_without_comment = re.sub(b'\s*#.*', b'', line) line_without_comment = line_without_comment.replace(b'\0', b'') - current.append(line_without_comment) + current.append(line_without_comment[4:]) if len(current) > 0: answers.append(current)