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

Merge pull request #490 from rick/patch-1

Fix warning about whitespace before parentheses in dns.rb.
This commit is contained in:
Wesley Beary 2011-08-31 10:55:46 -07:00
commit a0d3fe9dd2

View file

@ -91,7 +91,7 @@ module Fog
def validate_path_fragment(name, fragment)
if fragment.nil? or fragment.to_s.empty?
raise ArgumentError.new ("#{name} cannot be null or empty")
raise ArgumentError.new("#{name} cannot be null or empty")
end
end
end