diff --git a/plugins/commands/box/command/root.rb b/plugins/commands/box/command/root.rb index f8ed23125..80a439051 100644 --- a/plugins/commands/box/command/root.rb +++ b/plugins/commands/box/command/root.rb @@ -9,7 +9,7 @@ module VagrantPlugins @main_args, @sub_command, @sub_args = split_main_and_subcommand(argv) - @subcommands = Registry.new + @subcommands = Vagrant::Registry.new @subcommands.register(:add) { Add } @subcommands.register(:list) { List } @subcommands.register(:remove) { Remove } diff --git a/plugins/commands/reload/command.rb b/plugins/commands/reload/command.rb index da452e11d..ce1194185 100644 --- a/plugins/commands/reload/command.rb +++ b/plugins/commands/reload/command.rb @@ -5,7 +5,7 @@ module VagrantPlugins class Command < Vagrant::Command::Base # We assume that the `up` plugin exists and that we'll have access # to this. - include Vagrant::CommandUp::StartMixins + include VagrantPlugins::CommandUp::StartMixins def execute options = {}