changeset 636:685022ee236c

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 02 Apr 2024 18:44:09 +0200
parents 88539de02bcc
children 0dc47e4975dd
files Plugins/Worklists/Run.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)