diff options
| -rw-r--r-- | src/benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmark.py b/src/benchmark.py index 5566ae1..e8d52c6 100644 --- a/src/benchmark.py +++ b/src/benchmark.py @@ -457,7 +457,7 @@ class Benchmark: substitutions.update(alloc) if perm: substitutions.update(perm._asdict()) - substitutions["perm"] = ("{}-"*(len(perm)-1) + "{}").format(*perm) + substitutions["perm"] = "-".join(*perm) else: substitutions["perm"] = "" |
