From 76715424fa6f6c9802e1143e4dc9e73bcd7dc3c9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 25 Aug 2010 00:07:01 -0700 Subject: [PATCH] Fix scoping error with status command --- lib/vagrant/command/status.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/command/status.rb b/lib/vagrant/command/status.rb index 1eaad207e..71173a807 100644 --- a/lib/vagrant/command/status.rb +++ b/lib/vagrant/command/status.rb @@ -40,7 +40,7 @@ module Vagrant string_key = [:status_created, { :vm_state => vm.vm.state, - :additional_message => additional_key ? Translator.t(additional_key) : "" + :additional_message => additional_key ? Util::Translator.t(additional_key) : "" }] end