From a206d23bc7360a26d084efd476362913afdc5ae3 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 26 Aug 2010 23:33:44 -0700 Subject: [PATCH] No need to reference Vagrant namespace directly here... --- lib/vagrant/environment.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/environment.rb b/lib/vagrant/environment.rb index c4b6d8313..0a06485ea 100644 --- a/lib/vagrant/environment.rb +++ b/lib/vagrant/environment.rb @@ -138,7 +138,7 @@ module Vagrant # Makes a call to the CLI with the given arguments as if they # came from the real command line (sometimes they do!) def cli(*args) - Vagrant::CLI.start(args.flatten, :env => self) + CLI.start(args.flatten, :env => self) end # Returns the {UI} for the environment, which is responsible