1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-12 11:02:21 -05:00

Fixed syntax error for indexerApi code that was related to python 2.6

This commit is contained in:
echel0n 2014-03-27 20:27:43 -07:00
parent 97db8fd408
commit fad6876e4f

View File

@ -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())