Skip to content

Commit

Permalink
this should restore compatibillity with ruby below 1.9.3-p125, not su…
Browse files Browse the repository at this point in the history
…re if we should hotfix this, if anyone wants to...
  • Loading branch information
jhass committed Nov 22, 2012
1 parent 6ccdb40 commit bbad82c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/get_config.rb
Expand Up @@ -34,7 +34,7 @@ def self.env
var, setting_name = arg.split("=")
setting_name = var unless setting_name
setting = AppConfig.send(setting_name)
setting = setting.get if setting.is_a?(Configuration::Proxy)
setting = setting.get if setting.respond_to?(:_proxy?)
if var != setting_name
puts "#{var}=#{setting}"
else
Expand Down

0 comments on commit bbad82c

Please sign in to comment.