From 1e8e0b55fdd75dc3945ad038f5627a53273f0fad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonne=20Ha=C3=9F?= Date: Mon, 2 Jan 2012 21:17:11 +0100 Subject: [PATCH] paranthesis ftw, sorry for the noise --- app/models/app_config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/app_config.rb b/app/models/app_config.rb index 22a7a1720..60a8469be 100644 --- a/app/models/app_config.rb +++ b/app/models/app_config.rb @@ -80,7 +80,7 @@ HELP end def self.no_cert_file_in_prod? - (Rails.env == "production") && self[:ca_file].blank? || !File.exists?(self[:ca_file]) + (Rails.env == "production") && (self[:ca_file].blank? || !File.exists?(self[:ca_file])) end def self.have_old_config_file?