I assume lid_map was part of tvnamer, I find the interactive mode very useful for my own project, but had to modify the code a bit because in tvdb_api.py lid_map is undefined at line 198
In my own version I replaced
lid_map[cshow['lid']],
with
str(cshow['firstAired'])[:4],
To show the year or None, but maybe the mask should be adjusted.
Also the interactive mode help displays
# q - abort tvnamer
I assume lid_map was part of tvnamer, I find the interactive mode very useful for my own project, but had to modify the code a bit because in tvdb_api.py lid_map is undefined at line 198 In my own version I replaced
lid_map[cshow['lid']],
withstr(cshow['firstAired'])[:4],
To show the year or None, but maybe the mask should be adjusted.Also the interactive mode help displays # q - abort tvnamer