summaryrefslogtreecommitdiffstats
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
commita8a5ae6ad024a16286d589dabe600558654dd3fd (patch)
tree0411eee34ca110036f249f0da0f84e9130c82923 /lib/rss/parser.rb
parent78a8490fbe0e34afed2d70747cd220950280c1bc (diff)
downloadruby-a8a5ae6ad024a16286d589dabe600558654dd3fd.tar.gz
ruby-a8a5ae6ad024a16286d589dabe600558654dd3fd.tar.xz
ruby-a8a5ae6ad024a16286d589dabe600558654dd3fd.zip
* 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
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 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