From 84fdc7d49ac5aa5711dbb92c2ad57c890344db35 Mon Sep 17 00:00:00 2001 From: Brian Pitts Date: Wed, 30 Oct 2013 14:32:12 -0500 Subject: [PATCH] Fix box metadata error keys --- lib/vagrant-libvirt/errors.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/vagrant-libvirt/errors.rb b/lib/vagrant-libvirt/errors.rb index 4758083..e73e470 100644 --- a/lib/vagrant-libvirt/errors.rb +++ b/lib/vagrant-libvirt/errors.rb @@ -35,15 +35,15 @@ module VagrantPlugins end class NoBoxVirtualSizeSet < VagrantLibvirtError - error_key(:no_box_virtual_size_error) + error_key(:no_box_virtual_size) end class NoBoxFormatSet < VagrantLibvirtError - error_key(:no_box_format_error) + error_key(:no_box_format) end class WrongBoxFormatSet < VagrantLibvirtError - error_key(:wrong_box_format_error) + error_key(:wrong_box_format) end