I don't fully understand the code here:
def read_sets_name(self): ''' sets name into a list than return it. ''' set_list = [] for set_el in self.nfo_xml.xpath('set'): name_el = first(set_el.xpath('name'), set_el) if name_el.text: set_list.append(name_el.text) return set_list
but it looks like it is returning a list of SETs. However, PLEX is only picking up the first set.
My NFO looks like this:
`
I don't fully understand the code here:
def read_sets_name(self): ''' sets name into a list than return it. ''' set_list = [] for set_el in self.nfo_xml.xpath('set'): name_el = first(set_el.xpath('name'), set_el) if name_el.text: set_list.append(name_el.text) return set_list
but it looks like it is returning a list of SETs. However, PLEX is only picking up the first set. My NFO looks like this: `