diff options
author | Sean McGivern <sean@gitlab.com> | 2019-03-01 09:10:15 +0000 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2019-03-01 09:28:37 +0000 |
commit | 3fc6d4da19a49fbd63520b709c86bbe385e95ca6 (patch) | |
tree | 10af2865dcdaf0a0fbc81070aba330abbe96bd56 /config | |
parent | 53ec27b750f2e86e0639401d35a0fc45ee4ab06a (diff) | |
download | gitlab-ce-3fc6d4da19a49fbd63520b709c86bbe385e95ca6.tar.gz |
Fix double space before comment
Diffstat (limited to 'config')
-rw-r--r-- | config/initializers/fog_core_patch.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/initializers/fog_core_patch.rb b/config/initializers/fog_core_patch.rb index 50bd87c0add..d3d02216d45 100644 --- a/config/initializers/fog_core_patch.rb +++ b/config/initializers/fog_core_patch.rb @@ -37,7 +37,7 @@ module Fog def service_provider_constant(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)) - 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)) end |