Charles, two questions:
Code:
from_record_value = db.get_custom(from_id, num=col_num)
set_custom(to_id, val, num=col_num)
How do I get/set the series_index associated with a custom field of datatype 'series'?
Is there an easy way to merge tag-like text from two records when is_multiple is True? With tags, it's just:
Code:
for tag in from_mi.tags:
to_mi.tags.append(tag)
Duplicate tags are automatically removed.
Thanks.