# File lib/rhc/commands.rb, line 121
    def self.needs_configuration!(cmd, config)
      # check to see if we need to run wizard
      if not cmd.class.suppress_wizard?
        w = RHC::Wizard.new config
        return w.run if w.needs_configuration?
      end
      false
    end