summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/uriescape.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/uriescape.rb')
-rw-r--r--lib/puppet/parser/functions/uriescape.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/uriescape.rb b/lib/puppet/parser/functions/uriescape.rb
index a486eee..45bbed2 100644
--- a/lib/puppet/parser/functions/uriescape.rb
+++ b/lib/puppet/parser/functions/uriescape.rb
@@ -22,7 +22,7 @@ module Puppet::Parser::Functions
if value.is_a?(Array)
# Numbers in Puppet are often string-encoded which is troublesome ...
- result = value.collect { |i| i.is_a?(String) ? URI.escape(i,unsafe) : i }
+ result = value.collect { |i| i.is_a?(String) ? URI.escape(i) : i }
else
result = URI.escape(value)
end