1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[cdn+dns argumenterror incorrect provider reference

This commit is contained in:
David Andersen 2011-01-27 17:29:52 +08:00 committed by Wesley Beary
parent 2681ba50a6
commit b43ac39a9d
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ module Fog
require 'fog/cdn/rackspace'
Fog::Rackspace::CDN.new(attributes)
else
raise ArgumentError.new("#{provider} is not a recognized storage provider")
raise ArgumentError.new("#{provider} is not a recognized cdn provider")
end
end

View file

@ -17,7 +17,7 @@ module Fog
require 'fog/dns/zerigo'
Fog::Zerigo::DNS.new(attributes)
else
raise ArgumentError.new("#{provider} is not a recognized storage provider")
raise ArgumentError.new("#{provider} is not a recognized dns provider")
end
end