Fix for issue #17

This commit is contained in:
echel0n 2014-03-27 18:22:32 -07:00
parent 1bb9413b19
commit 69691f9d41
1 changed files with 1 additions and 1 deletions

View File

@ -54,4 +54,4 @@ class indexerApi(object):
@property
def indexers(self):
return {k: v if k is 'id' else v['name'] for k, v in indexerConfig.items()}
return dict({x['id'], x['name']} for x in indexerConfig.values())