Skip to content

Commit

Permalink
Merge pull request #1115 from h3xx/fix-syntax-error
Browse files Browse the repository at this point in the history
Fix syntax error in error condition

(cherry picked from commit f7471b4)
  • Loading branch information
oraNod authored and patchback[bot] committed Feb 21, 2024
1 parent db4db28 commit 5ff2a4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docsite/rst/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
int(tags.has(known_tag_name)) for known_tag_name in KNOWN_TAGS
)
assert applied_tags_count == 1, (
'Exactly one of the following tags expected: {", ".join(tags)}'.
format(tags=KNOWN_TAGS)
'Exactly one of the following tags expected: {tags}'.
format(tags=", ".join(KNOWN_TAGS))
)

VERSION = (
Expand Down

0 comments on commit 5ff2a4b

Please sign in to comment.