- Fixed 'getIndex' command

This commit is contained in:
Roberto Pastor 2019-06-24 13:49:50 +02:00 committed by evilhero
parent ae093da9e5
commit 33112c75f4
1 changed files with 1 additions and 1 deletions

View File

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