From 79c4a159ff45f55a52df8f5ef9eb45c2dfa5c697 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Wed, 25 Sep 2013 16:36:45 -0400 Subject: [PATCH] Bug 1009620 - Correct typo --- controller/app/models/application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/app/models/application.rb b/controller/app/models/application.rb index bdd17b4f008..b7bfc9f61a3 100644 --- a/controller/app/models/application.rb +++ b/controller/app/models/application.rb @@ -2603,7 +2603,7 @@ def calculate_configure_order(comp_specs) comps.each do |comp_spec| comp_spec[:prof].configure_order.each do |dep_cart| if !categories[dep_cart] and !existing_categories[dep_cart] - raise OpenShift::UserException.new("Cartridge '#{comp_spec[:cart].name}' can not be added with out cartridge '#{dep_cart}'.", 185) + raise OpenShift::UserException.new("Cartridge '#{comp_spec[:cart].name}' can not be added without cartridge '#{dep_cart}'.", 185) end end configure_order.add_component_order(comp_spec[:prof].configure_order.map{|c| categories[c]}.flatten)