From 368643fbaa1d96cd259d6e8384d9e2319f2b641e Mon Sep 17 00:00:00 2001 From: Sergio Jimenez Date: Tue, 1 Apr 2014 00:51:12 +0200 Subject: [PATCH] Fixed message about required Vagrant version --- lib/vagrant-libvirt/plugin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant-libvirt/plugin.rb b/lib/vagrant-libvirt/plugin.rb index 0d98213..2b494e3 100644 --- a/lib/vagrant-libvirt/plugin.rb +++ b/lib/vagrant-libvirt/plugin.rb @@ -7,7 +7,7 @@ end # This is a sanity check to make sure no one is attempting to install # this into an early Vagrant version. if Vagrant::VERSION < '1.5.0' - raise 'The Vagrant Libvirt plugin is only compatible with Vagrant 1.4+' + raise 'The Vagrant Libvirt plugin is only compatible with Vagrant 1.5+' end module VagrantPlugins