1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2025-02-01 12:07:50 +00:00

- Removed unnecessary parameter in format

This commit is contained in:
Roberto Pastor 2019-06-24 13:54:47 +02:00 committed by evilhero
parent 33112c75f4
commit e2f2a8f03b

View file

@ -219,8 +219,7 @@ class Api(object):
def _getIndex(self, **kwargs):
query = '{select} ORDER BY ComicSortName COLLATE NOCASE'.format(
select = self._selectForComics(),
id = self.id
select = self._selectForComics()
)
self.data = self._dic_from_query(query)