fixes object

This commit is contained in:
Torsten Ruger
2014-08-16 09:56:11 +03:00
parent a10321922e
commit 7f7a174554
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ module Sof
head = object.class.name + "("
attributes = attributes_for(object)
immediate , extended = attributes.partition {|a| is_value?(get_value(object , a) ) }
head += immediate.collect {|a| "#{a}: #{get_value(object , a)}"}.join(", ") + ")"
head += immediate.collect {|a| "#{a}: #{get_value(object , a).to_sof()}"}.join(", ") + ")"
node = Node.new(head)
extended.each do |a|