lib/chef-dk/exceptions.rb in chef-dk-3.11.3 vs lib/chef-dk/exceptions.rb in chef-dk-3.12.0

- old
+ new

@@ -64,10 +64,10 @@ class InvalidPolicyfileSourceURI < StandardError def initialize(url, reason = nil) @url = url @reason = reason - msg = "'#{@url}' is not a valid Policy File Source URI" + msg = "'#{@url}' is not a valid Policyfile Source URI" msg << " #{@reason}." unless @reason.nil? super(msg) end end