fix oauth keys, deep_merge vs deep_merge! my bad

This commit is contained in:
Jonne Hass 2011-09-12 22:28:13 +02:00
parent 6a6c4cd82b
commit 5ae96efdf6

View file

@ -13,6 +13,6 @@ SERVICES = nil
silence_warnings do
SERVICES = load_config_yaml("#{oauth_keys_file}.example")
if File.exist? oauth_keys_file
SERVICES.deep_merge(load_config_yaml(oauth_keys_file))
SERVICES.deep_merge!(load_config_yaml(oauth_keys_file))
end
end