Skip to content

Commit

Permalink
Don't use f-string as printf format argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
perj committed Jan 17, 2024
1 parent 4ec3ede commit cbaab8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k8s/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def watch_list(cls, namespace=None, resource_version=None, allow_bookmarks=False
# As per https://kubernetes.io/docs/reference/using-api/api-concepts/#semantics-for-watch
# only resourceVersion is used for watch queries.
params["resourceVersion"] = resource_version
LOG.info(f"Restarting %s watch at resource version %s", cls.__name__, resource_version)
LOG.info("Restarting %s watch at resource version %s", cls.__name__, resource_version)
if allow_bookmarks:
params["allowWatchBookmarks"] = "true"

Expand Down

0 comments on commit cbaab8b

Please sign in to comment.