Skip to content

Commit

Permalink
Merge pull request #1151 from ansible/patchback/backports/stable-2.16…
Browse files Browse the repository at this point in the history
…/f7471b4ed92b32757d285da6a8c09877627c36c7/pr-1115

[PR #1115/f7471b4e backport][stable-2.16] Fix syntax error in error condition
  • Loading branch information
oraNod authored Feb 21, 2024
2 parents c0290bd + 5ff2a4b commit e5a2361
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 e5a2361

Please sign in to comment.