Skip to content

Commit 0276f56

Browse files
committed
Use f-string format
1 parent 2750cc9 commit 0276f56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocp_resources/resource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def get_client(
115115
proxy = os.environ.get("HTTPS_PROXY") or os.environ.get("HTTP_PROXY")
116116

117117
if proxy:
118-
LOGGER.info("Trying to get client using proxy %s", proxy)
118+
LOGGER.info(f"Trying to get client using proxy {proxy}")
119119
client_configuration = client.Configuration()
120120
config.load_kube_config(
121121
config_file=config_file, client_configuration=client_configuration, persist_config=True

0 commit comments

Comments
 (0)