We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb4684d commit cad9522Copy full SHA for cad9522
build_docs.py
@@ -112,8 +112,10 @@ def from_json(cls, data: dict) -> Versions:
112
status = Version.SYNONYMS.get(status, status)
113
if status not in Version.STATUSES:
114
logging.warning(
115
- f"Saw invalid version status {status!r}, "
116
- f"expected to be one of {permitted}. Context: {release}"
+ "Saw invalid version status %r, expected to be one of %s. Context: %s",
+ status,
117
+ permitted,
118
+ release,
119
)
120
continue
121
versions.append(Version(name=name, status=status, branch_or_tag=branch))
0 commit comments