mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 07:46:07 -07:00
Raise exception type
This commit is contained in:
parent
4ad421d4d0
commit
86215c34be
2 changed files with 3 additions and 3 deletions
|
@ -2856,7 +2856,7 @@ class WebInterface(object):
|
|||
|
||||
try:
|
||||
if 'indexes' in img:
|
||||
raise
|
||||
raise NotFound
|
||||
return serve_file(path=ffp, content_type='image/jpeg')
|
||||
|
||||
except NotFound:
|
||||
|
@ -2873,7 +2873,7 @@ class WebInterface(object):
|
|||
|
||||
return result[0]
|
||||
else:
|
||||
raise
|
||||
raise Exception(u'PMS image request failed')
|
||||
|
||||
except Exception as e:
|
||||
logger.exception(u'Failed to get image %s, falling back to %s.' % (img, fallback))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue