From c5aed031f093ad4a9883322ef333ece76443266a Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Fri, 16 Oct 2015 00:21:30 +0200 Subject: [PATCH] + Fix #185 --- cloud/aws/mode/list.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud/aws/mode/list.pm b/cloud/aws/mode/list.pm index 38da746c7..82173e297 100644 --- a/cloud/aws/mode/list.pm +++ b/cloud/aws/mode/list.pm @@ -138,7 +138,7 @@ sub S3 { # Compute data foreach my $bucket (@buckets) { $self->{result}->{'S3'}->{ $bucket->{Name} } = - { Creation date => $bucket->{CreationDate} }; + { 'Creation date' => $bucket->{CreationDate} }; $self->{result}->{count}->{'S3'}++; } } @@ -166,7 +166,7 @@ sub RDS { } sub disco_format { - my ( $self, %options ) = @_; + my ($self, %options) = @_; my $names = [ 'name', 'id', 'state', 'service' ]; $self->{output}->add_disco_format( elements => $names );