# File lib/rubyipmi/commands/basecommand.rb, line 95
    def find_fix(result)
      if result
        # The errorcode code hash contains the fix
        begin
          fix = ErrorCodes.search(result)
          @options.merge_notify!(fix)
        rescue
          Rubyipmi.logger.debug("Could not find fix for error code: \n#{result}") if logger
          raise "Could not find fix for error code: \n#{result}"
        end
      end
    end