Yeah that’s the variable throwing the error; looks like this doesn’t have one for some reason?. I cut out the identical dict output just before the newly added print line:
Traceback (most recent call last):
File "./cb-dump", line 16, in <module>
print(f"Library Section: {episode.librarySectionID}")
File "/usr/local/lib/python3.8/site-packages/plexapi/base.py", line 308, in __getattribute__
self.reload()
File "/usr/local/lib/python3.8/site-packages/plexapi/base.py", line 213, in reload
self._loadData(data[0])
File "/usr/local/lib/python3.8/site-packages/plexapi/video.py", line 712, in _loadData
self.markers = self.findItems(data, media.Marker)
File "/usr/local/lib/python3.8/site-packages/plexapi/base.py", line 186, in findItems
item = self._buildItemOrNone(elem, cls, initpath)
File "/usr/local/lib/python3.8/site-packages/plexapi/base.py", line 88, in _buildItemOrNone
return self._buildItem(elem, cls, initpath)
File "/usr/local/lib/python3.8/site-packages/plexapi/base.py", line 73, in _buildItem
return cls(self._server, elem, initpath)
File "/usr/local/lib/python3.8/site-packages/plexapi/base.py", line 49, in __init__
self._loadData(data)
File "/usr/local/lib/python3.8/site-packages/plexapi/media.py", line 711, in _loadData
_tag, _id = self.filter.split('=')
AttributeError: 'NoneType' object has no attribute 'split'