Removed namespace from command usage of TemplateRenderer, since we extend that into the class

This commit is contained in:
Mitchell Hashimoto 2010-03-17 18:00:30 -07:00
parent b1872c4e31
commit c6e39ddbf0
1 changed files with 1 additions and 1 deletions

View File

@ -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