|
|
||
|
idx = 0;
print(" info: found " .. o.comments.getn .. " comments\n");
[...] I get an error (attempt to concatenate field `getn' (a nil value)). [...]
hmmm.. shouldn't be something like:
print(" info: found " .. table.getn(o.comments) .. " comments\n");
?
--rb