Merge pull request #7045 from ndeloof/command_suggest

Suggested command is invalid
This commit is contained in:
Ulysses Souza 2020-02-03 18:01:27 +01:00 committed by GitHub
commit eb20915c6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1201,7 +1201,7 @@ def image_digests_for_project(project):
if e.needs_push:
command_hint = (
"Use `docker-compose push {}` to push them. "
"Use `docker push {}` to push them. "
.format(" ".join(sorted(e.needs_push)))
)
paras += [
@ -1212,7 +1212,7 @@ def image_digests_for_project(project):
if e.needs_pull:
command_hint = (
"Use `docker-compose pull {}` to pull them. "
"Use `docker pull {}` to pull them. "
.format(" ".join(sorted(e.needs_pull)))
)