Skip to content

Commit

Permalink
fix 'Error: not well-formed (invalid token)' for dot rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
josteinaj committed May 13, 2024
1 parent 4fcf111 commit f35e58b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions produksjonssystem/core/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ def plot(self, uids, name):
group_pipeline = pipeline[0].get_current_group_pipeline()

title = group_pipeline.get_group_title()
title = title.replace("&", "&amp;").replace("<", "&lt;").replace(">", "&gt;")
pipeline_id = group_pipeline.get_group_id() # re.sub(r"[^a-z\d]", "", title.lower())

queue = group_pipeline.get_queue()
Expand Down

0 comments on commit f35e58b

Please sign in to comment.