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 b410fe1 commit 277e7f7Copy full SHA for 277e7f7
podman_compose.py
@@ -3212,12 +3212,12 @@ class PullImage:
3212
3213
def __post_init__(self) -> None:
3214
if self.policy not in self.POLICY_PRIORITY:
3215
- log.debug(f"Pull policy {self.policy} is not valid, using 'missing' instead")
+ log.debug("Pull policy %s is not valid, using 'missing' instead", self.policy)
3216
self.policy = "missing"
3217
3218
def update_policy(self, new_policy: str) -> None:
3219
if new_policy not in self.POLICY_PRIORITY:
3220
- log.debug(f"Pull policy {new_policy} is not valid, ignoring it")
+ log.debug("Pull policy %s is not valid, ignoring it", new_policy)
3221
return
3222
3223
if self.POLICY_PRIORITY[new_policy] > self.POLICY_PRIORITY[self.policy]:
0 commit comments