Skip to content

Commit 16f0a55

Browse files
committed
Refactorings
1 parent 14a6e60 commit 16f0a55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ def build_docker_images(self):
590590
if self.__docker_params:
591591
docker_build_command[2:2] = self.__docker_params
592592

593-
print(" ".join(docker_build_command))
593+
print(' '.join(docker_build_command))
594594

595595
ps = subprocess.run(docker_build_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, encoding='UTF-8', check=False)
596596

@@ -600,7 +600,7 @@ def build_docker_images(self):
600600

601601
# import the docker image locally
602602
image_import_command = ['docker', 'load', '-q', '-i', f"{temp_dir}/{tmp_img_name}.tar"]
603-
print(" ".join(image_import_command))
603+
print(' '.join(image_import_command))
604604
ps = subprocess.run(image_import_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, encoding='UTF-8', check=False)
605605

606606
if ps.returncode != 0 or ps.stderr != "":

0 commit comments

Comments
 (0)