mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[3] fix dict changed
This commit is contained in:
parent
ccd0e5dbe1
commit
4f818c2490
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.16.3-develop2
|
||||
1.16.3-develop3
|
||||
|
|
|
@ -131,7 +131,7 @@ class DataFile:
|
|||
template_name = variables["name"]
|
||||
template = self.templates[template_name]
|
||||
|
||||
for key, value in variables.items():
|
||||
for key, value in variables.copy().items():
|
||||
variables[f"{key}_encoded"] = requests.utils.quote(str(value))
|
||||
|
||||
default = {}
|
||||
|
|
Loading…
Reference in a new issue