Skip to content

Commit

Permalink
Fix TypeError: can only concatenate str (not "tuple") to str
Browse files Browse the repository at this point in the history
  • Loading branch information
kwk committed May 6, 2024
1 parent 58ab880 commit 60e3bec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/create-diagrams.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ def add_html_header_menu(
]
)
header_menu += (
' | <a href="fig-combined-standalone.html">llvm+clang+compiler-rt+libomp</a>',
' | <a href="fig-big-merge.html">llvm (big-merge)</a>',
' | <a href="fig-combined-standalone.html">llvm+clang+compiler-rt+libomp</a>'
)
header_menu += ' | <a href="fig-big-merge.html">llvm (big-merge)</a>'
header_menu += "</div>"
header_menu += replace_me

Expand Down

0 comments on commit 60e3bec

Please sign in to comment.