mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2025-02-16 22:08:25 +00:00
[4] fix int iteration
This commit is contained in:
parent
9718f4b221
commit
7399fa2e7c
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.17.3-develop3
|
||||
1.17.3-develop4
|
||||
|
|
|
@ -166,7 +166,7 @@ class DataFile:
|
|||
variables[f"{key}_encoded"] = requests.utils.quote(str(value))
|
||||
|
||||
def replace_var(input_item, search_dict):
|
||||
return_item = input_item
|
||||
return_item = str(input_item)
|
||||
for rk, rv in search_dict.items():
|
||||
if f"<<{rk}>>" in return_item:
|
||||
return_item = return_item.replace(f"<<{rk}>>", str(rv))
|
||||
|
|
Loading…
Add table
Reference in a new issue