summaryrefslogtreecommitdiff
path: root/models/artist.py
diff options
context:
space:
mode:
Diffstat (limited to 'models/artist.py')
-rw-r--r--models/artist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/models/artist.py b/models/artist.py
index 2e69354..fee081c 100644
--- a/models/artist.py
+++ b/models/artist.py
@@ -141,8 +141,8 @@ class Artist:
cursor = db.cursor()
artists = []
- select_string = """SELECT * FROM artist ORDER BY %s %s""" % (order,
- direction)
+ select_string = "SELECT * FROM artist ORDER BY %s %s" % (order,
+ direction)
if limit is not None and offset is not None:
select_string = " ".join((select_string,