mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Add exception handing if logout fails for opensubtitles
This commit is contained in:
parent
54ce291897
commit
7875d45504
1 changed files with 5 additions and 1 deletions
|
@ -97,7 +97,11 @@ class OpenSubtitles(ServiceBase):
|
|||
def terminate(self):
|
||||
super(OpenSubtitles, self).terminate()
|
||||
if self.token:
|
||||
self.server.LogOut(self.token)
|
||||
try:
|
||||
self.server.LogOut(self.token)
|
||||
except Exception as e:
|
||||
raise ServiceError(str(e))
|
||||
|
||||
|
||||
def query(self, filepath, languages, moviehash=None, size=None, imdbid=None, query=None):
|
||||
searches = []
|
||||
|
|
Loading…
Reference in a new issue