Skip to content

Commit

Permalink
fix broken word export when IG name is a number
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-intuitem committed Jan 26, 2025
1 parent b8713c9 commit 8a3a453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/core/generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def recursive_score_calculation(node_data):
res_donut = InlineImage(doc, plot_donut(donut_data), width=Cm(15))
chart_spider = InlineImage(doc, spider_chart_buffer, width=Cm(15))
ac_chart = InlineImage(doc, hbar_buffer, width=Cm(15))
IGs = ", ".join(audit.get_selected_implementation_groups())
IGs = ", ".join([str(x) for x in audit.get_selected_implementation_groups()])
context = {
"audit": audit,
"date": now().strftime("%d/%m/%Y"),
Expand Down

0 comments on commit 8a3a453

Please sign in to comment.