From 7609932a6fa45eb5a00fc0ac642bcfcdeba8fac3 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Mon, 5 Jan 2015 18:58:57 -0500 Subject: [PATCH] Do not use keyword arguments for string keys --- plugins/commands/package/command.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands/package/command.rb b/plugins/commands/package/command.rb index e54335475..3bb2cf563 100644 --- a/plugins/commands/package/command.rb +++ b/plugins/commands/package/command.rb @@ -80,7 +80,7 @@ module VagrantPlugins acc end - vm.action(:package, **opts) + vm.action(:package, opts) end end end