diff options
Diffstat (limited to 'gn3/db/wiki.py')
| -rw-r--r-- | gn3/db/wiki.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/db/wiki.py b/gn3/db/wiki.py index 2e12230..7565f05 100644 --- a/gn3/db/wiki.py +++ b/gn3/db/wiki.py @@ -101,7 +101,7 @@ def get_categories(cursor) -> Dict[str, int]: def get_species(cursor) -> Dict[str, str]: """Get all species""" - cursor.execute("SELECT Name, SpeciesName from Species") + cursor.execute("SELECT Name, SpeciesName from Species ORDER BY Species.Id") raw_species = cursor.fetchall() dict_cats = dict(raw_species) return dict_cats |
