Commit 3fc6d4da authored by Sean McGivern's avatar Sean McGivern

Fix double space before comment

parent 53ec27b7
...@@ -37,7 +37,7 @@ module Fog ...@@ -37,7 +37,7 @@ module Fog
def service_provider_constant(service_name, provider_name) def service_provider_constant(service_name, provider_name)
args = service_provider_search_args(service_name, provider_name) args = service_provider_search_args(service_name, provider_name)
Fog.const_get(args.first).const_get(*const_get_args(args.second)) Fog.const_get(args.first).const_get(*const_get_args(args.second))
rescue NameError # Try to find the constant from in an alternate location rescue NameError # Try to find the constant from in an alternate location
Fog.const_get(args.second).const_get(*const_get_args(args.first)) Fog.const_get(args.second).const_get(*const_get_args(args.first))
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment