From bbd485babd2a8f93b9971154b47d692df206546f Mon Sep 17 00:00:00 2001 From: Denis Diachkov Date: Sat, 30 Sep 2017 21:44:37 -1000 Subject: [PATCH] replace squish with strip again due to failed rebase :( --- lib/fog/aws/parsers/compute/describe_vpcs.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/fog/aws/parsers/compute/describe_vpcs.rb b/lib/fog/aws/parsers/compute/describe_vpcs.rb index 8d8727c73..baec10028 100644 --- a/lib/fog/aws/parsers/compute/describe_vpcs.rb +++ b/lib/fog/aws/parsers/compute/describe_vpcs.rb @@ -48,7 +48,7 @@ module Fog @current_cidr_block[name] = value when 'vpcSet.item.cidrBlockAssociationSet.item.cidrBlockState' - @current_cidr_block['state'] = value.squish + @current_cidr_block['state'] = value.strip when 'vpcSet.item.cidrBlockAssociationSet.item' @current_vpc['cidrBlockAssociationSet'] << @current_cidr_block @@ -60,7 +60,7 @@ module Fog @current_ipv6_block[name] = value when 'vpcSet.item.ipv6CidrBlockAssociationSet.item.ipv6CidrBlockState' - @current_ipv6_block['state'] = value.squish + @current_ipv6_block['state'] = value.strip when 'vpcSet.item.ipv6CidrBlockAssociationSet.item' @current_vpc['ipv6CidrBlockAssociationSet'] << @current_ipv6_block