mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
Fix logging formatting
This commit is contained in:
parent
648697f085
commit
c994c41e74
@ -31,7 +31,7 @@ def pull_image(image_name: str) -> bool:
|
|||||||
subprocess.check_call(f"docker pull {image_name}", shell=True)
|
subprocess.check_call(f"docker pull {image_name}", shell=True)
|
||||||
return True
|
return True
|
||||||
except subprocess.CalledProcessError:
|
except subprocess.CalledProcessError:
|
||||||
logging.info(f"Cannot pull image {image_name}".format())
|
logging.info("Cannot pull image %s", image_name)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user