Quote:
Originally Posted by JimmXinu
@edeniz:
Your problem is that you have two add_to_extra_valid_entries entries in the [defaults] section:
Code:
[defaults]
add_to_extra_valid_entries:,ships2chars
...
add_to_extra_valid_entries:,rawgenre,rawcategory,rawcharacters,rawships
The INI parser only uses the last entry in a section for the same key word. So ships2chars is ignored. (The add_to_ mechanism is for adding to other sections.)
Combine those two into one line and it should be good again:
Code:
[defaults]
add_to_extra_valid_entries:,ships2chars,rawgenre,rawcategory,rawcharacters,rawships
|
Thank you very kindly! I knew I messed up somewhere when I was trying to make the ini easier to navigate for me, but simply couldn't see where, much to my frustration.