fix TypeError

module_reference.rb encounts error "`+': can't convert Fixnum into String (TypeError)"
unstable
TADA Tadashi 2012-09-24 11:21:47 +09:00
parent 7ebe1a4d55
commit 794ddda705
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ $framework.modules.each { |name, mod|
x = mod.new x = mod.new
x.references.each do |r| x.references.each do |r|
if type=='All' or type==r.ctx_id if type=='All' or type==r.ctx_id
ref = r.ctx_id + '-' + r.ctx_val ref = "#{r.ctx_id}-#{r.ctx_val}"
tbl << [ x.fullname, ref ] tbl << [ x.fullname, ref ]
end end
end end