summaryrefslogtreecommitdiff
path: root/plugin.video.embycon/service.py
diff options
context:
space:
mode:
authorShaun <shaun@bluebit.com.au>2017-07-26 09:30:39 +1000
committerenen92 <enen92@users.noreply.github.com>2017-07-26 00:30:39 +0100
commitd066354ed3c2162e6ea2e0a3d61ce95c3526145a (patch)
tree066ebf71eeca2e11933983e1b9efe14ec43d8c27 /plugin.video.embycon/service.py
parentc59c7ae1bf49a8fa6db90f4bfab9e3258952ce9c (diff)
latest version, add Latest TV Shows endpoint (#1342)
Diffstat (limited to 'plugin.video.embycon/service.py')
-rw-r--r--plugin.video.embycon/service.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugin.video.embycon/service.py b/plugin.video.embycon/service.py
index eb38b02..83a1da2 100644
--- a/plugin.video.embycon/service.py
+++ b/plugin.video.embycon/service.py
@@ -25,8 +25,8 @@ download_utils = DownloadUtils()
# auth the service
try:
download_utils.authenticate()
-except Exception, e:
- pass
+except Exception as error:
+ log.error("Error with initial service auth: " + str(error))
def hasData(data):
@@ -288,6 +288,7 @@ class Service(xbmc.Player):
monitor = Service()
last_progress_update = time.time()
+download_utils.checkVersion()
xbmc_monitor = xbmc.Monitor()
while not xbmc_monitor.abortRequested():