From d9ff6e3a717ff704e4fd76c9482ac33403eeb972 Mon Sep 17 00:00:00 2001 From: joewilliams Date: Mon, 1 Nov 2010 11:52:04 -0700 Subject: [PATCH] fix deprecation warning --- lib/fog/slicehost.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/slicehost.rb b/lib/fog/slicehost.rb index ecccf3be9..12451fd3f 100644 --- a/lib/fog/slicehost.rb +++ b/lib/fog/slicehost.rb @@ -11,7 +11,7 @@ module Fog def self.new(attributes = {}) location = caller.first - warning = "[yellow][WARN] Fog::Slicehost#new is deprecated, use Fog::Bluebox::Compute#new instead[/]" + warning = "[yellow][WARN] Fog::Slicehost#new is deprecated, use Fog::Slicehost::Compute#new instead[/]" warning << " [light_black](" << location << ")[/] " Formatador.display_line(warning) Fog::Slicehost::Compute.new(attributes)