mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[7] fix status text
This commit is contained in:
parent
1d91060306
commit
23bb1f05b5
3 changed files with 4 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.18.2-develop6
|
||||
1.18.2-develop7
|
||||
|
|
|
@ -450,7 +450,8 @@ class DataFile:
|
|||
for k, v in default.items():
|
||||
if f"<<{k}>>" in key:
|
||||
key = key.replace(f"<<{k}>>", v)
|
||||
variables[key] = value
|
||||
if key not in variables:
|
||||
variables[key] = value
|
||||
for key, value in variables.copy().items():
|
||||
variables[f"{key}_encoded"] = requests.utils.quote(str(value))
|
||||
|
||||
|
|
|
@ -956,6 +956,7 @@ if __name__ == "__main__":
|
|||
else:
|
||||
raise Failed(f"Argument Error: blank time argument")
|
||||
for time_to_run in valid_times:
|
||||
params["time"] = time_to_run
|
||||
schedule.every().day.at(time_to_run).do(process, params)
|
||||
while True:
|
||||
schedule.run_pending()
|
||||
|
|
Loading…
Reference in a new issue