mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fix in indexerApi code
This commit is contained in:
parent
580afec2a7
commit
e789c065ee
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ from indexer_config import initConfig, indexerConfig
|
|||
|
||||
class indexerApi(object):
|
||||
def __init__(self, indexerID=None):
|
||||
self.indexerID = int(indexerID)
|
||||
self.indexerID = int(str(indexerID).encode("UTF-8"))
|
||||
|
||||
def indexer(self, *args, **kwargs):
|
||||
if self.indexerID:
|
||||
|
|
Loading…
Reference in a new issue