Skip to content
Snippets Groups Projects
Commit 981f9a63 authored by Ewan Cook's avatar Ewan Cook
Browse files

refs #20323 update hypheniser

parent 2aceff3b
No related branches found
No related tags found
No related merge requests found
...@@ -137,5 +137,5 @@ def hyphenise(vals): ...@@ -137,5 +137,5 @@ def hyphenise(vals):
out.append("-".join([a, b]) if a != b else a) out.append("-".join([a, b]) if a != b else a)
a = vals[i + 1] a = vals[i + 1]
b = vals[i + 1] b = vals[i + 1]
out.append("-".join([a, b]) if a != b else vals[i + 1]) out.append("-".join([a, b]) if a != b else vals[-1])
return ", ".join(out) return ", ".join(out)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment