From: Ron M Date: 2006-12-05T10:11:42+09:00 Subject: hpricot 0.4.76 chokes on empty comment. Hpricot's choking on some pages complaining about nil in Comment#parse. I can't remember the HTML page that was parsing it; but this patch fixes the problem for me. Why? If you're around, should something like this be checked in the main project? Ron desktop2:/usr/local/lib/ruby/gems/1.8/gems/hpricot-0.4.76/lib/hpricot% diff -c parse.rb.orig parse.rb *** parse.rb.orig Fri Dec 1 16:53:58 2006 --- parse.rb Fri Dec 1 16:54:04 2006 *************** *** 261,267 **** def Comment.parse(content) result = Comment.new(content) ! result.raw_string = "" result end --- 261,267 ---- def Comment.parse(content) result = Comment.new(content) ! result.raw_string = "" result end