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

Fix warning about whitespace before parentheses in dns.rb.

This commit is contained in:
Rick Bradley 2011-08-31 10:37:50 -07:00
parent c5cb84ab27
commit 9f35ac613d

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