Skip to content

Commit 68a9f5c

Browse files
authored
Fix spacing in KubernetesProvider debug log and use deferred formatting (#3508)
1 parent f62110d commit 68a9f5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parsl/providers/kubernetes/kube.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def submit(self, cmd_string, tasks_per_node, job_name="parsl"):
187187
formatted_cmd = template_string.format(command=cmd_string,
188188
worker_init=self.worker_init)
189189

190-
logger.debug("Pod name :{}".format(pod_name))
190+
logger.debug("Pod name: %s", pod_name)
191191
self._create_pod(image=self.image,
192192
pod_name=pod_name,
193193
job_name=job_name,

0 commit comments

Comments
 (0)