aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rss/parser.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-16 04:39:58 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-16 04:39:58 +0000
commit0ebac90b0ebb07ad2aa99080c8509559a7ddc74d (patch)
tree4e0e2233ffd5cc0a5e1052471c41d5f3d3172d6e /lib/rss/parser.rb
parent64422ae4941480634fbc2788d73ec3ba44c70b4b (diff)
downloadruby-0ebac90b0ebb07ad2aa99080c8509559a7ddc74d.tar.gz
* lib/rss: supported prety print.
* test/rss/test_1.0.rb: added test for calculating default indent size. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7047 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/parser.rb')
-rw-r--r--lib/rss/parser.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rss/parser.rb b/lib/rss/parser.rb
index 1a8fdd4930..9b9ff59173 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