I agree about blocking the offending robot, but if you really want to force the response format add a before_filter and set request.format = :html, like this:
before_filter :force_request_format_to_html
private
def force_request_format_to_html
request.format = :html
end