Skip to content

Commit

Permalink
Fix some basic mistakes with commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Apr 22, 2012
1 parent 9956e6d commit 582f214
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/commands/box/command/root.rb
Expand Up @@ -9,7 +9,7 @@ def initialize(argv, env)

@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 }
Expand Down
2 changes: 1 addition & 1 deletion plugins/commands/reload/command.rb
Expand Up @@ -5,7 +5,7 @@ module CommandReload
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 = {}
Expand Down

0 comments on commit 582f214

Please sign in to comment.