# File lib/rubyipmi/commands/basecommand.rb, line 77
    def findfix(result, args, debug, runmethod)
      if result
        # The errorcode code hash contains the fix
        fix = ErrorCodes.code[result]
        if not fix
          raise "#{result}"
        else
          @options.merge_notify!(fix)
          # retry the last called method
          # its quicker to explicitly call these commands than calling a command block
          if runmethod == "run"
            run(debug)
          else
            run_without_opts(args, debug)
          end

        end

      end
    end