Skip to content

Commit 90c08ab

Browse files
committed
Fix syntax error in error condition
Seen when running `make -f Makefile.sphinx CPUS=1 PYTHON=python3 man`. Python v3.9.18
1 parent 209fd01 commit 90c08ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/docsite/rst/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
int(tags.has(known_tag_name)) for known_tag_name in KNOWN_TAGS
3939
)
4040
assert applied_tags_count == 1, (
41-
'Exactly one of the following tags expected: {", ".join(tags)}'.
42-
format(tags=KNOWN_TAGS)
41+
'Exactly one of the following tags expected: {tags}'.
42+
format(tags=", ".join(KNOWN_TAGS))
4343
)
4444

4545
VERSION = (

0 commit comments

Comments
 (0)