Skip to content

Commit f7471b4

Browse files
authored
Merge pull request #1115 from h3xx/fix-syntax-error
Fix syntax error in error condition
2 parents 10fcdc0 + 90c08ab commit f7471b4

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)