Commit 3176a789 by liyijie

fix conver_data with eval finder

parent 5507aa16
...@@ -89,7 +89,8 @@ module TalltyImportExport ...@@ -89,7 +89,8 @@ module TalltyImportExport
elsif header[:finder] elsif header[:finder]
$SAFE = 2 $SAFE = 2
eval_string = header[:finder] + '(val)' eval_string = header[:finder] + '(val)'
eval eval_string eval_val = eval eval_string
h[k.to_sym] = eval_val
else else
h[k.to_sym] = val h[k.to_sym] = val
end end
......
module TalltyImportExport module TalltyImportExport
VERSION = "1.0.16" VERSION = "1.0.17"
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment