From ef273382579f91b812e2e69872ea1bccf81499d5 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Wed, 16 Dec 2020 14:49:29 -0500 Subject: [PATCH] test --- fHDHR_web/api/startup_tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fHDHR_web/api/startup_tasks.py b/fHDHR_web/api/startup_tasks.py index 83602cb..63c2c2f 100644 --- a/fHDHR_web/api/startup_tasks.py +++ b/fHDHR_web/api/startup_tasks.py @@ -8,8 +8,8 @@ class Startup_Tasks(): def __init__(self, fhdhr): self.fhdhr = fhdhr - self.epg_update_url = "/api/epg?method=update" % (self.fhdhr.api.base) - self.channel_update_url = "/api/channels?method=scan" % (self.fhdhr.api.base) + self.epg_update_url = "%s/api/epg?method=update" % (self.fhdhr.api.base) + self.channel_update_url = "%s/api/channels?method=scan" % (self.fhdhr.api.base) def __call__(self, *args): return self.get(*args)