mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
fix for #139
This commit is contained in:
parent
e661d2f0b7
commit
d140454de1
1 changed files with 1 additions and 2 deletions
|
@ -85,8 +85,7 @@ class CollectionBuilder:
|
|||
optional.append(str(template["optional"]))
|
||||
else:
|
||||
raise Failed("Collection Error: template sub-attribute optional is blank")
|
||||
|
||||
for method_name, attr_data in template:
|
||||
for method_name, attr_data in template.items():
|
||||
if method_name not in self.data and method_name not in ["default", "optional"]:
|
||||
if attr_data:
|
||||
def replace_txt(txt):
|
||||
|
|
Loading…
Reference in a new issue