mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2025-02-16 13:58:25 +00:00
[91] fix unpack error
This commit is contained in:
parent
d43030f47b
commit
f6418aff7d
3 changed files with 3 additions and 3 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.17.3-develop90
|
||||
1.17.3-develop91
|
||||
|
|
|
@ -20,7 +20,7 @@ libraries:
|
|||
| `BAFTA Best Films` | `best` | Collection of British Academy of Film Best Film Award Winners |
|
||||
| `BAFTA <<year>>` | `<<year>>` | Collection of British Academy of Film Award Winners for the given year. |
|
||||
|
||||
## Example Collections
|
||||
### Examples
|
||||
|
||||
![](../images/bafta.png)
|
||||
|
||||
|
|
|
@ -153,7 +153,7 @@ class DataFile:
|
|||
def add_translation(yaml_path, yaml_key, data=None):
|
||||
yaml_content = YAML(input_data=data, path=yaml_path if data is None else None, check_empty=True)
|
||||
if "variables" in yaml_content.data and yaml_content.data["variables"]:
|
||||
for var_key, var_value in yaml_content.data["variables"]:
|
||||
for var_key, var_value in yaml_content.data["variables"].items():
|
||||
if lib_type in var_value:
|
||||
if var_key not in key_names:
|
||||
key_names[var_key] = {}
|
||||
|
|
Loading…
Add table
Reference in a new issue