# File lib/ruote/dboard/process_status.rb, line 363
    def hinspect(indent, h)

      if h
        h.collect { |k, v|
          s << "#{' ' * indent}#{k.inspect}: #{v.inspect}"
        }.join("\n")
      else
        "#{' ' * indent}(nil)"
      end
    end