From c6e39ddbf06f71eaa9fdf9a29ef76bcc64a4499a Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 17 Mar 2010 18:00:30 -0700 Subject: [PATCH] Removed namespace from command usage of TemplateRenderer, since we extend that into the class --- lib/vagrant/commands.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/commands.rb b/lib/vagrant/commands.rb index 28f67c352..23dc8264f 100644 --- a/lib/vagrant/commands.rb +++ b/lib/vagrant/commands.rb @@ -23,7 +23,7 @@ error # Copy over the rootfile template into this directory default_box ||= "base" File.open(rootfile_path, 'w+') do |f| - f.write(Util::TemplateRenderer.render!(Env::ROOTFILE_NAME, :default_box => default_box)) + f.write(TemplateRenderer.render!(Env::ROOTFILE_NAME, :default_box => default_box)) end end