From a8a5ae6ad024a16286d589dabe600558654dd3fd Mon Sep 17 00:00:00 2001 From: kou Date: Sat, 16 Oct 2004 04:39:58 +0000 Subject: * lib/rss: supported prety print. * test/rss/test_1.0.rb: added test for calculating default indent size. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7047 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rss/parser.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/rss/parser.rb') diff --git a/lib/rss/parser.rb b/lib/rss/parser.rb index 1a8fdd493..9b9ff5917 100644 --- a/lib/rss/parser.rb +++ b/lib/rss/parser.rb @@ -286,8 +286,8 @@ module RSS @proc_stack.push(nil) else parent = "ROOT ELEMENT???" - if current_class.const_defined?("TAG_NAME") - parent = current_class.const_get("TAG_NAME") + if current_class.tag_name + parent = current_class.tag_name end raise NotExceptedTagError.new(local, parent) end -- cgit