diff options
Diffstat (limited to 'lib/puppet/config.rb')
-rw-r--r-- | lib/puppet/config.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/config.rb b/lib/puppet/config.rb index 23268e463..77c167ae8 100644 --- a/lib/puppet/config.rb +++ b/lib/puppet/config.rb @@ -230,7 +230,7 @@ class Config when /^true$/i: true when /^\d+$/i: Integer(value) else - value.gsub(/^["']|["']$/,'') + value.gsub(/^["']|["']$/,'').sub(/\s+$/, '') end end |