mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-20 16:43:43 +00:00
Fixed syntax error for indexerApi code that was related to python 2.6
This commit is contained in:
parent
97db8fd408
commit
fad6876e4f
1 changed files with 1 additions and 1 deletions
|
@ -54,4 +54,4 @@ class indexerApi(object):
|
|||
|
||||
@property
|
||||
def indexers(self):
|
||||
return dict({x['id'], x['name']} for x in indexerConfig.values())
|
||||
return dict((x['id'], x['name']) for x in indexerConfig.values())
|
Loading…
Reference in a new issue