fix warning

This commit is contained in:
Mike Dirolf 2009-03-12 16:01:13 -04:00
parent 0f546eb5c5
commit 4e06c63972
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class XMLToRuby
when 'string'
e.text.to_s
when 'code'
Code.new (e.text.to_s)
Code.new(e.text.to_s)
when 'binary'
bin = Binary.new
decoded = Base64.decode64(e.text.to_s)