Skip to content

Commit 1efc1ab

Browse files
committed
fix style issues
1 parent a165dde commit 1efc1ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/azure-cli/azure/cli/command_modules/acr/check_health.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def _subprocess_communicate(command_parts, shell=False):
7272
)
7373
return output, warning, stderr, succeeded
7474

75+
7576
# Checks for the environment
7677
# Checks docker command, docker daemon, docker version and docker pull
7778
def _get_docker_status_and_version(ignore_errors, yes):
@@ -112,7 +113,7 @@ def _get_docker_status_and_version(ignore_errors, yes):
112113
except ValueError:
113114
os = "unknown"
114115
arch = "unknown"
115-
logger.warning(f"{docker_command.title()} version: {version}, build {commit}, platform {os}/{arch}")
116+
logger.warning("%s version: %s, build %s, platform %s/%s", docker_command.title(), version, commit, os, arch)
116117

117118
# Docker pull check - only if docker daemon is available
118119
if docker_daemon_available:

0 commit comments

Comments
 (0)