Fix typo in error message. (#471)

This commit is contained in:
Kevin Busse 2016-06-20 12:15:31 +02:00 committed by Vincent Demeester
parent 2a735e815a
commit dcf98d13c8

View file

@ -364,7 +364,7 @@ func listContainers(ctx context.Context, dockerClient client.APIClient) ([]docke
for _, container := range containerList {
containerInspected, err := dockerClient.ContainerInspect(ctx, container.ID)
if err != nil {
log.Warnf("Failed to inpsect container %s, error: %s", container.ID, err)
log.Warnf("Failed to inspect container %s, error: %s", container.ID, err)
} else {
containersInspected = append(containersInspected, containerInspected)
}