diff options
Diffstat (limited to 'database.py')
| -rwxr-xr-x | database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/database.py b/database.py index 61c2947..34945a0 100755 --- a/database.py +++ b/database.py @@ -18,7 +18,7 @@ class Database: def get_header_links(self): cursor = self.__connection.cursor() - cursor.execute("SELECT name, link FROM headerLinks;") + cursor.execute("SELECT name, link FROM headerLinks ORDER BY name;") return cursor.fetchall() def get_image(self, imageName): |
