From 4b2e9b0ac83b2d9869aa86a6938aace39905c236 Mon Sep 17 00:00:00 2001 From: Shini31 Date: Mon, 14 Sep 2015 11:36:03 +0200 Subject: [PATCH] fix bad ident --- centreon-plugins/cloud/docker/mode/listcontainers.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/centreon-plugins/cloud/docker/mode/listcontainers.pm b/centreon-plugins/cloud/docker/mode/listcontainers.pm index 0c2935e7e..f1985d6fe 100644 --- a/centreon-plugins/cloud/docker/mode/listcontainers.pm +++ b/centreon-plugins/cloud/docker/mode/listcontainers.pm @@ -129,10 +129,10 @@ sub run { foreach my $containername (keys %{$self->{container_infos}}) { $self->{output}->output_add(long_msg => sprintf("%s [id = %s , image = %s, state = %s]", - $containername, - $self->{container_infos}->{$containername}->{id}, - $self->{container_infos}->{$containername}->{image}, - $self->{container_infos}->{$containername}->{state})); + $containername, + $self->{container_infos}->{$containername}->{id}, + $self->{container_infos}->{$containername}->{image}, + $self->{container_infos}->{$containername}->{state})); } $self->{output}->output_add(severity => 'OK',